Add paged chat history loading

This commit is contained in:
Federico Jaramillo Martinez
2026-05-07 15:46:08 +02:00
parent 5430a44561
commit eb59f1eb00
42 changed files with 1894 additions and 333 deletions
+3 -1
View File
@@ -11,7 +11,9 @@ export class SessionEventHub {
this.socketsBySession.set(sessionId, sockets);
}
sockets.add(socket);
socket.on("close", () => sockets?.delete(socket));
socket.on("close", () => {
sockets.delete(socket);
});
}
addGlobal(socket: WebSocket): void {