auto assume WebSocket protocol using location.protocol

This commit is contained in:
Nick Krecklow
2020-05-05 17:52:28 -05:00
parent 899c094cb1
commit cdb64f0ad8
4 changed files with 12 additions and 12 deletions

View File

@ -10,7 +10,12 @@ export class SocketManager {
}
createWebSocket () {
this._webSocket = new WebSocket('ws://' + location.host)
let webSocketProtocol = 'ws:'
if (location.protocol === 'https:') {
webSocketProtocol = 'wss:'
}
this._webSocket = new WebSocket(webSocketProtocol + '//' + location.host)
// The backend will automatically push data once connected
this._webSocket.onopen = () => {