diff options
| author | David Skoland <davidskoland@gmail.com> | 2023-11-20 00:07:28 +0100 |
|---|---|---|
| committer | David Skoland <davidskoland@gmail.com> | 2023-11-20 21:10:04 +0100 |
| commit | 9215c454967540a714b71cfa31d4ad52ad62c5b8 (patch) | |
| tree | ba9d1f7e735760524983c0b2d07baaff5a296e67 | |
| parent | dc54ca89f2639123a8e66ab38c6b8aeabeaf45c3 (diff) | |
Missing colon
| -rw-r--r-- | webAO/master.ts | 2 |
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}`; |
