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
The http.request() made in unsubscribe() function, line 596 does not have a handler for error function. this means that if the remote device shuts down before the peer, there will be an un-handled exception when the local peer tries to shut down, and calls removeAllListeners().
It would be great if line 615 would have the following code: req.on("error",function(){});
Regards,
Reza
The text was updated successfully, but these errors were encountered:
Thank you for sharing this library.
The http.request() made in unsubscribe() function, line 596 does not have a handler for error function. this means that if the remote device shuts down before the peer, there will be an un-handled exception when the local peer tries to shut down, and calls removeAllListeners().
It would be great if line 615 would have the following code:
req.on("error",function(){});
Regards,
Reza
The text was updated successfully, but these errors were encountered: