[mirotalk] - fix typo

This commit is contained in:
Miroslav Pejic
2023-10-27 18:59:25 +02:00
parent 619d2848f8
commit 93ff2b6b57
3 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ SURVEY_URL=https://www.questionpro.com/t/AUs7VZq00L
# Upon leaving the room, users who either opt out of providing feedback or if the survey is disabled
# will be redirected to a specified URL. If enabled false the default '/newrcall' URL will be used.
REDIRECT_ENABLED=false
REDIRECT_ENABLED=false # true or false
REDIRECT_URL='https://p2p.mirotalk.com'
# Sentry (optional)
+1 -1
View File
@@ -773,7 +773,7 @@ io.sockets.on('connect', async (socket) => {
redirect: {
active: redirectEnabled,
url: redirectURL,
}
},
//...
});
});
+2 -3
View File
@@ -636,7 +636,7 @@ let surveyURL = 'https://www.questionpro.com/t/AUs7VZq00L';
// Redirect on leave room
let redirectActive = false;
let redirectURL = '/newcall'
let redirectURL = '/newcall';
/**
* Load all Html elements by Id
@@ -1076,8 +1076,7 @@ function handleServerInfo(config) {
surveyURL = survey.url;
// Get redirect settings from server
redirectActive = redirect.active,
redirectURL = redirect.url
(redirectActive = redirect.active), (redirectURL = redirect.url);
// Limit room to n peers
if (userLimits.active && peers_count > userLimits.count) {