socket.io
Advanced tools
Comparing version 0.7.4 to 0.7.5
0.7.5 / 2011-06-30 | ||
================== | ||
* Fixed dispatching to clients that are disconnected. | ||
0.7.4 / 2011-06-30 | ||
@@ -3,0 +8,0 @@ ================== |
@@ -410,3 +410,5 @@ | ||
Manager.prototype.onClientDispatch = function (id, packet) { | ||
this.closed[id].push(packet); | ||
if (this.closed[id]) { | ||
this.closed[id].push(packet); | ||
} | ||
}; | ||
@@ -413,0 +415,0 @@ |
@@ -18,3 +18,3 @@ | ||
exports.version = '0.7.4'; | ||
exports.version = '0.7.5'; | ||
@@ -21,0 +21,0 @@ /** |
{ | ||
"name": "socket.io" | ||
, "version": "0.7.4" | ||
, "version": "0.7.5" | ||
, "description": "Realtime apps made cross-browser & easy with a WebSocket-like API" | ||
@@ -5,0 +5,0 @@ , "homepage": "http://socket.io" |
300733
7339