From 27ea53fbf384e859399853b283964ac52cff6a36 Mon Sep 17 00:00:00 2001 From: mathiascode Date: Sat, 21 Sep 2019 04:02:22 +0300 Subject: [PATCH] Use https for websocket --- console/scripts/WebConsoleManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console/scripts/WebConsoleManager.js b/console/scripts/WebConsoleManager.js index 21e4c96..5999b42 100755 --- a/console/scripts/WebConsoleManager.js +++ b/console/scripts/WebConsoleManager.js @@ -10,7 +10,7 @@ class WebConsoleManager { */ loadConnection(){ //If not created yet, create it - this.activeConnection = new WebConsoleConnector("ws://play.kaboom.pw:53951"); + this.activeConnection = new WebConsoleConnector("wss://play.kaboom.pw:53951"); this.activeConnection.connect(); }