summaryrefslogtreecommitdiffstats
path: root/web/react/stores
diff options
context:
space:
mode:
authorAndy Lo-A-Foe <andy.loafoe@aemian.com>2016-01-19 19:41:39 +0100
committerAndy Lo-A-Foe <andy.loafoe@aemian.com>2016-01-19 19:41:39 +0100
commit6faabe34e8a56e247953be631a6af31a132b8b0b (patch)
tree4b1d56c22d06669f80b045eb8c7e1f9a7407ea3a /web/react/stores
parentc672820ff6a2a58d390c9bbc80fffdcc654e2716 (diff)
downloadchat-6faabe34e8a56e247953be631a6af31a132b8b0b.tar.gz
chat-6faabe34e8a56e247953be631a6af31a132b8b0b.tar.bz2
chat-6faabe34e8a56e247953be631a6af31a132b8b0b.zip
Optionally specify ws:// and wss:// port in config
Diffstat (limited to 'web/react/stores')
-rw-r--r--web/react/stores/socket_store.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/stores/socket_store.jsx b/web/react/stores/socket_store.jsx
index 24fa79ca6..f1fade305 100644
--- a/web/react/stores/socket_store.jsx
+++ b/web/react/stores/socket_store.jsx
@@ -49,7 +49,7 @@ class SocketStoreClass extends EventEmitter {
protocol = 'wss://';
}
- var connUrl = protocol + location.host + '/api/v1/websocket?' + Utils.getSessionIndex();
+ var connUrl = protocol + location.host + ((/:\d+/).test(location.host) ? '' : Utils.getWebsocketPort(protocol)) + '/api/v1/websocket?' + Utils.getSessionIndex();
if (this.failCount === 0) {
console.log('websocket connecting to ' + connUrl); //eslint-disable-line no-console