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 ""
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 ""