diff options
author | Martin Ashby <martin@ashbysoft.com> | 2018-05-17 21:13:19 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2018-05-17 21:13:19 +0000 |
commit | cb16d30a23ad140e6b82e26ab0f348eb22fc8244 (patch) | |
tree | 092a75151d9228325b91f64fdd7814f9d6046c09 /src | |
parent | a49102fc3e2f210236e653d5cf42fa1d1231b30a (diff) | |
download | unicornpaint-cb16d30a23ad140e6b82e26ab0f348eb22fc8244.tar.gz unicornpaint-cb16d30a23ad140e6b82e26ab0f348eb22fc8244.tar.bz2 unicornpaint-cb16d30a23ad140e6b82e26ab0f348eb22fc8244.tar.xz unicornpaint-cb16d30a23ad140e6b82e26ab0f348eb22fc8244.zip |
Changed websocket connection for ssl proper.
Dockerfile copies build to correct location.
Diffstat (limited to 'src')
-rw-r--r-- | src/App.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 |