From 9215c454967540a714b71cfa31d4ad52ad62c5b8 Mon Sep 17 00:00:00 2001 From: David Skoland Date: Mon, 20 Nov 2023 00:07:28 +0100 Subject: Missing colon --- webAO/master.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'webAO/master.ts') diff --git a/webAO/master.ts b/webAO/master.ts index f12674f..17e5f54 100644 --- a/webAO/master.ts +++ b/webAO/master.ts @@ -159,7 +159,7 @@ function processServerlist(serverlist: AOServer[]) { continue; } - const clientURL: string = `${http_protocol}//${host}/client.html`; + const clientURL: string = `${http_protocol}://${host}/client.html`; const connect = `${ws_protocol}://${server.ip}:${port}`; const serverName = server.name; server.online = `Players: ${server.players}`; -- cgit