[mirotalksfu] - fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2024-04-04 22:36:33 +02:00
الأصل 5f9a587275
التزام d32600fad3

عرض الملف

@@ -308,7 +308,7 @@ function startServer() {
// main page
app.get(['/'], (req, res) => {
if (hostCfg.protected) {
let ip = getIP(req);
const ip = getIP(req);
if (allowedIP(ip)) {
res.sendFile(views.landing);
} else {
@@ -323,7 +323,7 @@ function startServer() {
// set new room name and join
app.get(['/newroom'], (req, res) => {
if (hostCfg.protected) {
let ip = getIP(req);
const ip = getIP(req);
if (allowedIP(ip)) {
res.sendFile(views.newRoom);
} else {