Skip to content

Commit

Permalink
Release 1.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed May 3, 2016
1 parent 1d7519c commit 204498a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

1.4.6 / 2016-05-02
==================

* bump engine.io-client

1.4.5 / 2016-01-26
==================

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "socket.io-client",
"version": "1.4.5",
"version": "1.4.6",
"keywords": [
"realtime",
"framework",
Expand Down Expand Up @@ -35,7 +35,7 @@
"has-cors": "1.1.0",
"istanbul": "0.4.2",
"mocha": "2.3.4",
"socket.io": "1.4.5",
"socket.io": "1.4.6",
"text-blob-builder": "0.0.1",
"uglify-js": "2.6.1",
"zuul": "3.9.0",
Expand Down
2 changes: 1 addition & 1 deletion socket.io.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function Socket(uri, opts){
this.cert = opts.cert || null;
this.ca = opts.ca || null;
this.ciphers = opts.ciphers || null;
this.rejectUnauthorized = opts.rejectUnauthorized === undefined ? null : opts.rejectUnauthorized;
this.rejectUnauthorized = opts.rejectUnauthorized === undefined ? true : opts.rejectUnauthorized;

// other options for Node.js client
var freeGlobal = typeof global == 'object' && global;
Expand Down

0 comments on commit 204498a

Please sign in to comment.