diff options
author | tomsmeding <tom.smeding@gmail.com> | 2017-03-28 23:12:19 +0200 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2017-03-28 23:12:19 +0200 |
commit | 8affdf7fe871c78783d63093cc9006867f67e929 (patch) | |
tree | 9a752fbc818554a527f54c55510f9b2d4033f771 /webclient | |
parent | 9ad0dd977b35d20343babc85a432ff90b95473ad (diff) |
Fix https
Diffstat (limited to 'webclient')
-rw-r--r-- | webclient/client.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/client.html b/webclient/client.html index af790c6..218bc22 100644 --- a/webclient/client.html +++ b/webclient/client.html @@ -84,7 +84,7 @@ function reconnect(){ net_callbacks={}; var host=location.hostname||"localhost"; - sock=new WebSocket("ws://"+host+":29546"); + sock=new WebSocket("wss://"+host+":29546"); updateStatus(); updateRoomList(); sock.addEventListener("message",function(msg){ |