socket.io
Advanced tools
Comparing version 0.6.15 to 0.6.16
0.6.16 / 2011-03-04 | ||
=================== | ||
* Fixed cross domain xhr-polling in Safari [tifroz] | ||
0.6.15 / 2011-02-23 | ||
@@ -3,0 +8,0 @@ =================== |
@@ -26,2 +26,2 @@ | ||
exports.version = '0.6.15'; | ||
exports.version = '0.6.16'; |
@@ -72,3 +72,3 @@ var Client = require('../client') | ||
if (this.request.headers.origin && this._verifyOrigin(this.request.headers.origin)){ | ||
headers['Access-Control-Allow-Origin'] = this.request.headers.origin; | ||
headers['Access-Control-Allow-Origin'] = (this.request.headers.origin === 'null' ? '*' : this.request.headers.origin); | ||
if (this.request.headers.cookie) headers['Access-Control-Allow-Credentials'] = 'true'; | ||
@@ -75,0 +75,0 @@ } |
{ "name" : "socket.io" | ||
, "description" : "The cross-browser WebSocket" | ||
, "version" : "0.6.15" | ||
, "version" : "0.6.16" | ||
, "author" : "LearnBoost" | ||
@@ -5,0 +5,0 @@ , "licenses" : |
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
8183545