Skip to content

Commit

Permalink
#update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstyles committed Jan 18, 2016
1 parent 5464055 commit f70c895
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
##

* _add_ allow passing options to socket.io instance
* _update_ attach raw socket.io instance
* _update_ attach IO instance for default namespace
* _fix_ use new socket.io identifier type
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ module.exports = class IO {
}

app.server = http.createServer( app.callback() )
app._io = socketIO( app.server, this.opts.ioOptions )
app._io = new socketIO( app.server, this.opts.ioOptions )

if ( this.opts.namespace ) {
this.attachNamespace( app, this.opts.namespace )
Expand Down

0 comments on commit f70c895

Please sign in to comment.