summary refs log tree commit diff
path: root/src/api/Server.ts
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-03-14 03:26:26 +0100
committerRory& <root@rory.gay>2026-03-14 03:26:26 +0100
commitb5e63c06b684e00f63c70e3e8347e9c49da6c02e (patch)
tree9d79d2f3fba3af08846b2286e6bb3e149aabca2c /src/api/Server.ts
parentUpdate nix locks for nuget deps (diff)
downloadserver-ts-b5e63c06b684e00f63c70e3e8347e9c49da6c02e.tar.xz
Qodana: fix async warnings
Diffstat (limited to 'src/api/Server.ts')
-rw-r--r--src/api/Server.ts2
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!`));