another fix, maybe

This commit is contained in:
2024-06-05 00:50:15 +02:00
parent 5206738cb9
commit d508ece9c7
2 changed files with 3 additions and 2 deletions

View File

@ -46,7 +46,7 @@ export class Server
// Start the server
try {
await this.http.listen(config.PORT, '0.0.0.0');
await this.http.listen(config.PORT, config.HOST);
console.log('[✅] Socket.IO running on port', config.PORT);
} catch (error: any) {
throw new Error(`[❌] Socket.IO failed to start: ${error.message}`);