Fix main & improve cursor sync #101

Merged
schmelczer merged 16 commits from asch/fix-main into main 2025-08-25 17:15:52 +01:00
Showing only changes of commit 44f642f649 - Show all commits

Change log level

Andras Schmelczer 2025-08-23 12:37:43 +01:00
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C

View file

@ -152,7 +152,7 @@ export class WebSocketManager {
} }
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
} else if (message.type === "cursorPositions") { } else if (message.type === "cursorPositions") {
this.logger.info( this.logger.debug(
`Received cursor positions for ${JSON.stringify(message.clients)}` `Received cursor positions for ${JSON.stringify(message.clients)}`
); );
this.remoteCursorsUpdateListeners.forEach((listener) => { this.remoteCursorsUpdateListeners.forEach((listener) => {