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
When I use the JS-[email protected] with a Jetty Server and io.socket/[email protected], I can observe strange behaviour. The client does not receive the events correctly...
It establishes the connection and also sends data:
I have to do some weird workarounds to make the connection work:
// JavaScriptsocket.io.on('open',()=>{socket.onconnect();});socket.onAny((data)=>{console.log('Here comes my data',data);});socket.on('message',(msg)=>{console.log('Here comes no data',data);});
The bug
When I use the JS-
[email protected]
with a Jetty Server andio.socket/[email protected]
, I can observe strange behaviour. The client does not receive the events correctly...It establishes the connection and also sends data:
I have to do some weird workarounds to make the connection work:
👀 Ref: socketio/socket.io-client#1597
The text was updated successfully, but these errors were encountered: