summary refs log tree commit diff
path: root/src/webrtc/Server.ts
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-12-19 20:32:26 +0100
committerRory& <root@rory.gay>2025-12-19 20:32:26 +0100
commit9d4e3d39f4d18b5a7735d1666e464cf2bfb60c52 (patch)
tree74f9ec2d4bab504c22789f23f80626844a18d128 /src/webrtc/Server.ts
parentFix style in scripts/schemaExclusions.json (diff)
downloadserver-ts-9d4e3d39f4d18b5a7735d1666e464cf2bfb60c52.tar.xz
Dont use promises for dummy endpoints
Diffstat (limited to 'src/webrtc/Server.ts')
-rw-r--r--src/webrtc/Server.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webrtc/Server.ts b/src/webrtc/Server.ts

index 334b9112..312a97c9 100644 --- a/src/webrtc/Server.ts +++ b/src/webrtc/Server.ts
@@ -79,7 +79,7 @@ export class Server { } async stop() { - closeDatabase(); + await closeDatabase(); this.server.close(); mediaServer?.stop(); }