Skip to content

Commit

Permalink
fix: websocket connection string
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasgloning committed Apr 28, 2022
1 parent d158ea8 commit 82b8c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/socket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class Socket extends EventEmitter {
return;
}

this._socket = new WebSocket(wsUrl + "?version=" + version);
this._socket = new WebSocket(wsUrl + "&version=" + version);
this._disconnected = false;

this._socket.onmessage = (event) => {
Expand Down

0 comments on commit 82b8c71

Please sign in to comment.