From 688985c133c467e6c7674ca42aca970a418f2fe1 Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Mon, 21 Aug 2023 14:11:42 +0200 Subject: [PATCH] Shame on me --- cmd/server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/server.ts b/cmd/server.ts index 78bab34f..0771e0fd 100644 --- a/cmd/server.ts +++ b/cmd/server.ts @@ -108,6 +108,6 @@ To allow outside connections, pass -L 0.0.0.0 as a flag, and put a TLS terminato await httpServer.start(); // Wait in an infinite loop (to keep the HTTP server running, only cancelable via Ctrl+C or other signal) while (true) { - sleep(1000); + await sleep(1000); } }