fix(external_api) replace special chars in roomName before constructing URL

Fixes: https://github.com/jitsi/jitsi-meet/issues/7900
This commit is contained in:
Steffen Kolmer 2020-11-10 11:00:12 +01:00 committed by GitHub
parent d08f3e1ab2
commit 6f90458ff1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -514,7 +514,7 @@ export function urlObjectToString(o: Object): ?string {
// pathname
// Web's ExternalAPI roomName
const room = o.roomName || o.room;
const room = _fixRoom(o.roomName || o.room);
if (room
&& (url.pathname.endsWith('/')