Use https for websocket

This commit is contained in:
mathiascode 2019-09-21 04:02:22 +03:00
parent 25ba4f1fa9
commit 27ea53fbf3

View file

@ -10,7 +10,7 @@ class WebConsoleManager {
*/ */
loadConnection(){ loadConnection(){
//If not created yet, create it //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(); this.activeConnection.connect();
} }