From 8add16bd0fff15dffe3b0a7931052c5218108cc1 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Thu, 17 May 2018 20:42:44 +0100 Subject: Set ws vs wss protocols --- src/App.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/App.js b/src/App.js index 98611b2..fe5a100 100644 --- a/src/App.js +++ b/src/App.js @@ -142,8 +142,8 @@ class App extends Component { } _connectWebsocket() { - // this._websocket = new WebSocket('ws://' + window.location.hostname + ':3001/ws') - this._websocket = new WebSocket('ws://shinypi:3001/ws') + let webSocketProto = window.location.protocol === "https" ? "wss" : "ws" + this._websocket = new WebSocket(`${webSocketProto}://${window.location.host}/ws`) this._websocket.onmessage = this._onMessage this._websocket.onopen = this._onOpen this._websocket.onclose = this._onClose -- cgit v1.2.3-ZIG