Fixed websocket undefined on app.websocketDisconnect()
authorDarren <darren@darrenwhitlen.com>
Thu, 25 Aug 2011 19:41:05 +0000 (20:41 +0100)
committerDarren <darren@darrenwhitlen.com>
Thu, 25 Aug 2011 19:41:05 +0000 (20:41 +0100)
node/kiwi.js

index 99091d1456c3b95649e8eb23e897158edd623d7b..032b560cb21cc9a414e70ce57f86fad7519a148a 100644 (file)
@@ -144,7 +144,7 @@ this.websocketConnection = function (websocket) {
     return app.websocketConnection(websocket);
 }
 this.websocketDisconnect = function () {
-    return app.websocketDisconnect();
+    return app.websocketDisconnect(this);
 }
 this.websocketMessage = function (msg, callback) {
     return app.websocketMessage(this, msg, callback);