force socketsio to use websockets

This commit is contained in:
Simone Tesini 2025-08-02 05:08:08 +02:00
parent f05b5666db
commit 426a2706d8

View file

@ -22,7 +22,7 @@
onMount(async () => {
// Join the room
socket = io("/", { path: "/ws" })
socket = io("/", { path: "/ws", transports: ["websocket"] })
let sugg, queue, index
;[returnError] = await joinRoom(data.roomId)