Revert "fix(external_api) replace special chars in roomName before constructing URL"
This reverts commit 6f90458ff1
.
This commit is contained in:
parent
e9200bab09
commit
b23f4b02ea
|
@ -514,7 +514,7 @@ export function urlObjectToString(o: Object): ?string {
|
|||
// pathname
|
||||
|
||||
// Web's ExternalAPI roomName
|
||||
const room = _fixRoom(o.roomName || o.room);
|
||||
const room = o.roomName || o.room;
|
||||
|
||||
if (room
|
||||
&& (url.pathname.endsWith('/')
|
||||
|
|
Loading…
Reference in New Issue