Hi, I've experienced an error where the function StartClient returns true whereas the client is not actually connected.
In the file Netcode.Transports.WebSocket.WebSocketTransport, line 122, there is a return true;
I've drilled down the misfunction, and it seems that the lib WebSocketSharp return void in it's Connect function.
As the code of WebSocketSharp is in this repo, Could you patch the file : WebSocket-Sharp.WebSocket.cs
on lines 3234 to change :
by
if( connect())
open()
else
throw new InvalidOperationException("Could not connect to the server");
Or better, make a fix so that the function Connect returns bool instead of void ?
Even better, I could propose a patch ?
Hi, I've experienced an error where the function
StartClientreturnstruewhereas the client is not actually connected.In the file Netcode.Transports.WebSocket.WebSocketTransport, line 122, there is a
return true;I've drilled down the misfunction, and it seems that the lib WebSocketSharp return
voidin it'sConnectfunction.As the code of WebSocketSharp is in this repo, Could you patch the file : WebSocket-Sharp.WebSocket.cs
on lines 3234 to change :
by
Or better, make a fix so that the function
Connectreturnsboolinstead ofvoid?Even better, I could propose a patch ?