release 5.3.1

This commit is contained in:
Nick Krecklow
2020-05-05 23:45:04 -05:00
parent 4c2c8492b8
commit 49379acc77
6 changed files with 13 additions and 6 deletions

View File

@ -15,7 +15,7 @@ export class SocketManager {
webSocketProtocol = 'wss:'
}
this._webSocket = new WebSocket(webSocketProtocol + '//' + location.host)
this._webSocket = new WebSocket(webSocketProtocol + '//' + location.hostname + ':8080')
// The backend will automatically push data once connected
this._webSocket.onopen = () => {