Compare commits

...

2 Commits
0.6.7 ... 0.6.8

Author SHA1 Message Date
Guillermo Rauch
a91c6f26f4 Release 0.6.8 2011-01-10 01:50:26 -08:00
Guillermo Rauch
aa9f2596cb Fixed issue with terminating connection twice 2011-01-10 01:48:05 -08:00
3 changed files with 8 additions and 3 deletions

View File

@@ -1,4 +1,9 @@
0.6.8 / 2011-01-10
==================
* Fixed issue with terminating connection twice
0.6.7 / 2011-01-09
==================

View File

@@ -69,8 +69,8 @@ Client.prototype._onConnect = function(req, res){
this.connection.addListener('end', function(){
self._onClose();
self.connection.destroy();
self.connection = null;
if (self.connection)
self.connection.destroy();
});
if (req){

View File

@@ -1,6 +1,6 @@
{ "name" : "socket.io"
, "description" : "The cross-browser WebSocket"
, "version" : "0.6.7"
, "version" : "0.6.8"
, "author" : "LearnBoost"
, "licenses" :
[ { "type" : "MIT"