fixed ws issue 1256

This commit is contained in:
Georgi Jhangiryan 2018-11-30 02:38:50 +04:00 committed by Jairo
parent 0eb8e47acf
commit 96fd0d0e2b

View File

@ -55,6 +55,10 @@ app._initializeWSS = function(server) {
self._configureWS(socket, key, id, token); self._configureWS(socket, key, id, token);
} }
}); });
this._wss.on("error", function (err) {
// handle error
})
}; };
app._configureWS = function(socket, key, id, token) { app._configureWS = function(socket, key, id, token) {