From 832899c17b8d2ecc582d4390c983b4395e60ec01 Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Tue, 5 Sep 2023 09:13:54 +0200 Subject: [PATCH] [mirotalksfu] - #124 fix typo --- app/src/Server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/Server.js b/app/src/Server.js index 0adaffb2..94d3860f 100644 --- a/app/src/Server.js +++ b/app/src/Server.js @@ -243,7 +243,7 @@ function startServer() { if (allowedIP(ip)) { if (Object.keys(req.query).length > 0) { log.debug('Logged: Direct Join', req.query); - // http://localhost:3010/?room=test or http://localhost:3010/join?room=test + // http://localhost:3010/?room=test const { room } = checkXSS(req.query); if (room) { return res.sendFile(views.room);