diff options
Diffstat (limited to 'source/server')
-rw-r--r-- | source/server/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/server/index.ts b/source/server/index.ts index 470e289..f9d0e6e 100644 --- a/source/server/index.ts +++ b/source/server/index.ts @@ -44,7 +44,7 @@ async function main() { app.use("/static", estatic(join(__dirname, "../../public"))); - app.ws("/room/:id", (ws, req) => { + app.ws("/signaling/:id", (ws, req) => { const room_name = req.params.id const room: Map<string, ws> = rooms.get(req.params.id) ?? new Map() let initialized = false |