You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The onerror event handler is incorrectly assuming that the WebSocket will pass a CloseEvent. A plain Event is passed instead. See the WebSocket API's error event has no specific type, while the WebSocket API's close event does.
The text was updated successfully, but these errors were encountered:
I found a log in our application from Colyseus.js:
That's coming from here:
colyseus.js/src/Room.ts
Line 76 in 2feff0a
The
onerror
event handler is incorrectly assuming that the WebSocket will pass aCloseEvent
. A plainEvent
is passed instead. See the WebSocket API's error event has no specific type, while the WebSocket API's close event does.The text was updated successfully, but these errors were encountered: