summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/gateway/Server.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gateway/Server.ts b/src/gateway/Server.ts

index 7fea1a27..4918f1b5 100644 --- a/src/gateway/Server.ts +++ b/src/gateway/Server.ts
@@ -171,9 +171,12 @@ export class Server { await Config.init(); await initEvent(); // temporary fix + console.log("[Gateway] Clearing voice states"); await cleanupOnStartup(); + console.log("[Gateway] dbg checking if server is listening"); if (!this.server.listening) { + console.log("gonna start listening on", this.port); this.server.listen(this.port); console.log(`[Gateway] online on 0.0.0.0:${this.port}`); }