socket: added missing acks initialization

This commit is contained in:
Guillermo Rauch
2012-12-18 14:56:58 -03:00
parent 97b63b0860
commit 342845d5c2

View File

@@ -58,6 +58,7 @@ function Socket(nsp, client){
this.client = client;
this.flags = [];
this.rooms = [];
this.acks = {};
this.connected = true;
this.disconnected = false;
}