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
Current implementation of socketio doesn't have if (this.writable && this.readyState === "open") check before sending the data. This causes server crash.
Because the code was on the Render cloud, I did not found any way to reproduce it on my pc. Thus by adding this.readyState === "open" check, the issue was fixed.
I pulled a request with the fix.
The text was updated successfully, but these errors were encountered:
Current implementation of socketio doesn't have
if (this.writable && this.readyState === "open")
check before sending the data. This causes server crash.Because the code was on the
Render
cloud, I did not found any way to reproduce it on my pc. Thus by addingthis.readyState === "open"
check, the issue was fixed.I pulled a request with the fix.
The text was updated successfully, but these errors were encountered: