aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--webAO/client.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/webAO/client.ts b/webAO/client.ts
index 28ca48f..0501325 100644
--- a/webAO/client.ts
+++ b/webAO/client.ts
@@ -78,8 +78,8 @@ fpPromise
if (!connectionString && mode !== "replay") {
if (serverIP) {
// if connectionString is not set, try IP
- // and just guess ws, though it could be wss
- connectionString = `ws://${serverIP}`;
+ // and just guess wss
+ connectionString = `wss://${serverIP}`;
} else {
alert("No connection string specified!");
return;