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:
parent
d08f3e1ab2
commit
6f90458ff1
|
@ -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('/')
|
||||
|
|
Loading…
Reference in New Issue