Skip to content

Commit 9a2919c

Browse files
committed
Changed port from 7688 to 7687
1 parent 1eef183 commit 9a2919c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v1/internal/ch-websocket.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class WebSocketChannel {
3333
* @param {Integer} opts.port - The port to use.
3434
*/
3535
constructor (opts) {
36-
this._url = "ws:" + opts.host + ":" + (opts.port || 7688);
36+
this._url = "ws:" + opts.host + ":" + (opts.port || 7687);
3737
this._ws = new WebSocket(this._url);
3838
this._ws.binaryType = "arraybuffer";
3939
this._open = true;

0 commit comments

Comments
 (0)