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
XmppWebSocketIo has a bug. When secure is used, the _socket stream has been closed and data can no longer be sent to the server. At this time, calling the write method cannot send it. The solution is to add a new SecureSocket? _secureSocket; object and assign it in the secure method, and then determine whether _secureSocket is empty when writing. If it is not empty, call _secureSocket.write to send data.
The text was updated successfully, but these errors were encountered:
XmppWebSocketIo has a bug. When secure is used, the _socket stream has been closed and data can no longer be sent to the server. At this time, calling the write method cannot send it. The solution is to add a new SecureSocket? _secureSocket; object and assign it in the secure method, and then determine whether _secureSocket is empty when writing. If it is not empty, call _secureSocket.write to send data.
The text was updated successfully, but these errors were encountered: