aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/static/scripts.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-02-09 00:26:03 +0300
committerGravatar Vitaly Takmazov2018-02-09 00:26:03 +0300
commitc9a59c945b1a9f0f36bf397d88ea0de0ea22f1fe (patch)
tree13fe61b3b34c2645b4e63674bd836e1055d07843 /juick-www/src/main/static/scripts.js
parent515d5a80eb9ace41e1aa94c6f880738efc56e3b9 (diff)
www: switch to new ws url
Diffstat (limited to 'juick-www/src/main/static/scripts.js')
-rw-r--r--juick-www/src/main/static/scripts.js2
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;