From 14b8190d1e0efdfd7b2650923f7b014614dcf937 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 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; -- cgit