feat(base/conference): get subject and localSubject from config (#14520)

* feat(base/conference): fixed getting localSubject, subject and parsing url params.
This commit is contained in:
Calinteodor
2024-03-26 16:07:11 +02:00
committed by GitHub
parent 9727951a77
commit 9b798b4514
8 changed files with 59 additions and 49 deletions

View File

@@ -60,9 +60,12 @@ export function parseURLParams(
value = param[1];
if (!dontParse) {
const decoded = decodeURIComponent(value).replace(/\\&/, '&');
const decoded = decodeURIComponent(value).replace(/\\&/, '&')
.replace(/[\u2018\u2019]/g, '\'')
.replace(/[\u201C\u201D]/g, '"');
value = decoded === 'undefined' ? undefined : safeJsonParse(decoded);
}
} catch (e: any) {
reportError(