fix typo in server.js (#109)

`sock` is not defined in the scope.
This commit is contained in:
Jo Hyun Woo 2019-03-27 00:56:17 +09:00 committed by Roman Shtylman
parent d9fca62c17
commit 78c06f8fc4

View File

@ -145,13 +145,13 @@ export default function(opt) {
server.on('upgrade', (req, socket, head) => {
const hostname = req.headers.host;
if (!hostname) {
sock.destroy();
socket.destroy();
return;
}
const clientId = GetClientIdFromHostname(hostname);
if (!clientId) {
sock.destroy();
socket.destroy();
return;
}