1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/Server.ts b/src/api/Server.ts
index 6a61d3cb..f6c38398 100644
--- a/src/api/Server.ts
+++ b/src/api/Server.ts
@@ -200,7 +200,7 @@ export class SpacebarServer extends Server {
this.app.use(ErrorHandler);
- ConnectionLoader.loadConnections();
+ await ConnectionLoader.loadConnections();
if (logRequests) console.log(red(`Warning: Request logging is enabled! This will spam your console!\nTo disable this, unset the 'LOG_REQUESTS' environment variable!`));
|