uncaught exception: [Exception... "An attempt was made to use an
object that is not, or is no longer, usable" code: "11" nsresult:
"0x8053000b (NS_ERROR_DOM_INVALID_STATE_ERR)" location: "http://
xxx.xxx.xxx.xxx/socket.io/socket.io.js Line: 2323"]
File:
Line: 0
Note: the IP address has been redacted
The socket.io.js file header says:
/*! Socket.IO.js build:0.8.7, development. Copyright(c) 2011
LearnBoost <d...@learnboost.com> MIT Licensed */
Line 2323 is:
this.websocket.send(data);
from this chunk of code:
WS.prototype.send = function (data) {
this.websocket.send(data);
return this;
};
Any idea what might be causing the issue?
I'm seeing the same thing but for
WS.prototype.close = function () {this.websocket.close();return this;};
Did you ever find a solution?