diff options
author | Vitaly Takmazov | 2018-02-09 00:26:03 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-02-09 00:26:03 +0300 |
commit | c9a59c945b1a9f0f36bf397d88ea0de0ea22f1fe (patch) | |
tree | 13fe61b3b34c2645b4e63674bd836e1055d07843 /juick-www/src/main | |
parent | 515d5a80eb9ace41e1aa94c6f880738efc56e3b9 (diff) |
www: switch to new ws url
Diffstat (limited to 'juick-www/src/main')
-rw-r--r-- | juick-www/src/main/static/scripts.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/juick-www/src/main/static/scripts.js b/juick-www/src/main/static/scripts.js index 25e65731..ff617330 100644 --- a/juick-www/src/main/static/scripts.js +++ b/juick-www/src/main/static/scripts.js @@ -126,7 +126,7 @@ var ws, function initWS() { let url = (window.location.protocol === 'https:' ? 'wss' : 'ws') + ':' - + '//ws.juick.com/'; + + '//api.juick.com/ws/'; let hash = document.getElementById('body').getAttribute('data-hash'); if (hash) { url += '?hash=' + hash; |