Fixed issue with client disconnection
This commit is contained in:
parent
ed526ff3c4
commit
0f7e0703d7
2
main.js
2
main.js
|
@ -455,7 +455,7 @@ var server = net.createServer(function(socket)
|
||||||
connections.push(sock);
|
connections.push(sock);
|
||||||
|
|
||||||
// Set on disconnect
|
// Set on disconnect
|
||||||
sock.sock.on("disconnect", function()
|
sock.sock.on('close', function()
|
||||||
{
|
{
|
||||||
// Delete the connection id
|
// Delete the connection id
|
||||||
delete connections[sock.connection_id];
|
delete connections[sock.connection_id];
|
||||||
|
|
Loading…
Reference in New Issue