aboutsummaryrefslogtreecommitdiff
path: root/src/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.js')
-rw-r--r--src/App.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/App.js b/src/App.js
index 1895e23..663b976 100644
--- a/src/App.js
+++ b/src/App.js
@@ -143,8 +143,9 @@ class App extends Component {
}
_connectWebsocket() {
- let webSocketProto = window.location.protocol === "https" ? "wss" : "ws"
- this._websocket = new WebSocket(`${webSocketProto}://${window.location.host}/ws`)
+ let webSocketProto = window.location.protocol === "https:" ? "wss:" : "ws:"
+ // let webSocketProto = "wss"
+ this._websocket = new WebSocket(`${webSocketProto}//${window.location.host}/ws`)
this._websocket.onmessage = this._onMessage
this._websocket.onopen = this._onOpen
this._websocket.onclose = this._onClose