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
When proxying through sinopia, trying to download express. I excountered an exception in
lib/middleware.js on line 155, for some reason the res.socket was null, thus trying to destroy it resulted in a termination of sinopia.
A quick fix was: if (res.socket != null) return res.socket.destroy() return ""
The text was updated successfully, but these errors were encountered:
When proxying through sinopia, trying to download express. I excountered an exception in
lib/middleware.js on line 155, for some reason the res.socket was null, thus trying to destroy it resulted in a termination of sinopia.
A quick fix was:
if (res.socket != null)
return res.socket.destroy()
return ""
The text was updated successfully, but these errors were encountered: