We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TwitchConnection.WriteThread.cs at line 19: var stream = tcpClient.GetStream();
var stream = tcpClient.GetStream();
can sometimes give this error: InvalidOperationException: The operation is not allowed on non-connected sockets.
InvalidOperationException: The operation is not allowed on non-connected sockets.
Very random, impossible to reproduce. But maybe add something to verify that TCPClient is actually connected before doing anything.
(issue probably exists in TwitchConnection.ReadThread.cs too)
The text was updated successfully, but these errors were encountered:
Update: this issue is related to poor/unstable internet connection. But how to handle this?
Sorry, something went wrong.
No branches or pull requests
TwitchConnection.WriteThread.cs at line 19:
var stream = tcpClient.GetStream();
can sometimes give this error:
InvalidOperationException: The operation is not allowed on non-connected sockets.
Very random, impossible to reproduce. But maybe add something to verify that TCPClient is actually connected before doing anything.
(issue probably exists in TwitchConnection.ReadThread.cs too)
The text was updated successfully, but these errors were encountered: