refactor: send client list on patch

This commit is contained in:
Carlos Valente
2025-02-22 19:58:13 +01:00
committed by Carlos Valente
parent 6c3ae1f914
commit 8e8d3a7824
@@ -130,6 +130,7 @@ export class SocketServer implements IAdapter {
if (payload && typeof payload == 'object') {
this.clients.set(clientId, { ...this.clients.get(clientId), ...payload });
}
this.sendClientList();
return;
}