summary refs log tree commit diff
path: root/src/webrtc/Server.ts
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-09-08 21:12:19 +0200
committerRory& <root@rory.gay>2025-09-08 21:12:19 +0200
commitb05f47437b431d8f3ec62360716a48ae5b16a541 (patch)
tree6de09c2c68d2e14e36729fe3475cbf7bd591fe53 /src/webrtc/Server.ts
parentAdd missing migration for plugins (diff)
downloadserver-ts-rebased/dev/rory/legacy/plugins.tar.xz
Diffstat (limited to 'src/webrtc/Server.ts')
-rw-r--r--src/webrtc/Server.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/webrtc/Server.ts b/src/webrtc/Server.ts

index f43b37259..df0160ded 100644 --- a/src/webrtc/Server.ts +++ b/src/webrtc/Server.ts
@@ -17,7 +17,7 @@ */ import dotenv from "dotenv"; dotenv.config(); -import { closeDatabase, Config, initDatabase, initEvent } from "@spacebar/util"; +import { closeDatabase, Config, initDatabase, initEvent, PluginConfig } from "@spacebar/util"; import http from "http"; import ws from "ws"; import { Connection } from "./events/Connection"; @@ -75,6 +75,7 @@ export class Server { async start(): Promise<void> { await initDatabase(); await Config.init(); + await PluginConfig.init(); await initEvent(); // try to load webrtc library, if failed just don't start webrtc endpoint