replace websocket with sockatrice

This commit is contained in:
seavor 2026-05-07 15:54:59 -05:00
parent 68050b56bc
commit e2319c84db
218 changed files with 89 additions and 9100 deletions

View file

@ -31,7 +31,7 @@ const Rooms = ({ rooms, joinedRooms }: RoomsProps) => {
if (joinedRoomIds.has(roomId)) {
navigate(generatePath(App.RouteEnum.ROOM, { roomId: String(roomId) }));
} else {
webClient.request.rooms.joinRoom(roomId);
webClient.request.session.joinRoom(roomId);
}
};