chore: Update lint dependencies

This commit is contained in:
Joachim Van Herwegen
2024-07-18 11:03:30 +02:00
parent d1282f6b1a
commit ecd031e69f
37 changed files with 3049 additions and 2931 deletions

View File

@@ -79,7 +79,7 @@ class WebSocketListener extends WebSocketListenerEmitter {
private onMessage(message: string): void {
// Parse the message
const match = /^(\w+)\s+(.+)$/u.exec(message);
const match = /^(\w+)\s+(\S.+)$/u.exec(message);
if (!match) {
this.sendMessage('warning', `Unrecognized message format: ${message}`);
return;