From 3ce48bf73372576c79236b4471a9282f9d7be6c4 Mon Sep 17 00:00:00 2001 From: Osmium Sorcerer Date: Tue, 31 Mar 2026 14:23:41 +0000 Subject: Guess WSS, not WS, if the schema isn't set --- webAO/client.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webAO/client.ts b/webAO/client.ts index 30067b8..ab39ee9 100644 --- a/webAO/client.ts +++ b/webAO/client.ts @@ -76,8 +76,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; -- cgit