Comma should be semicolon, woopsy

This commit is contained in:
wltsmrz
2014-05-30 13:30:48 -07:00
parent 1c02166662
commit 453ff91065

View File

@@ -91,7 +91,7 @@ function Server(remote, opts) {
}; };
this._url = this._opts.url = (this._opts.secure ? 'wss://' : 'ws://') this._url = this._opts.url = (this._opts.secure ? 'wss://' : 'ws://')
+ this._opts.host + ':' + this._opts.port, + this._opts.host + ':' + this._opts.port;
this.on('message', onMessage); this.on('message', onMessage);