websocket-driver
Advanced tools
Comparing version 0.5.2 to 0.5.3
@@ -0,1 +1,6 @@ | ||
### 0.5.3 / 2015-02-22 | ||
* Don't treat incoming data as WebSocket frames if a client driver is closed | ||
before receiving the server handshake | ||
### 0.5.2 / 2015-02-19 | ||
@@ -2,0 +7,0 @@ |
@@ -56,2 +56,3 @@ 'use strict'; | ||
parse: function(data) { | ||
if (this.readyState === 3) return; | ||
if (this.readyState > 0) return Hybi.prototype.parse.call(this, data); | ||
@@ -58,0 +59,0 @@ |
@@ -8,3 +8,3 @@ { "name" : "websocket-driver" | ||
, "version" : "0.5.2" | ||
, "version" : "0.5.3" | ||
, "engines" : {"node": ">=0.6.0"} | ||
@@ -11,0 +11,0 @@ , "main" : "./lib/websocket/driver" |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
62135
1315