[mirotalk] - fix typo
This commit is contained in:
+1
-1
@@ -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
@@ -773,7 +773,7 @@ io.sockets.on('connect', async (socket) => {
|
||||
redirect: {
|
||||
active: redirectEnabled,
|
||||
url: redirectURL,
|
||||
}
|
||||
},
|
||||
//...
|
||||
});
|
||||
});
|
||||
|
||||
+2
-3
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user