aboutsummaryrefslogtreecommitdiff
path: root/webAO
diff options
context:
space:
mode:
authorDavid Skoland <davidskoland@gmail.com>2023-11-20 00:07:28 +0100
committerDavid Skoland <davidskoland@gmail.com>2023-11-20 21:10:04 +0100
commit9215c454967540a714b71cfa31d4ad52ad62c5b8 (patch)
treeba9d1f7e735760524983c0b2d07baaff5a296e67 /webAO
parentdc54ca89f2639123a8e66ab38c6b8aeabeaf45c3 (diff)
Missing colon
Diffstat (limited to 'webAO')
-rw-r--r--webAO/master.ts2
1 files changed, 1 insertions, 1 deletions
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}`;