From b23f4b02ea51cb4441b452c85ae942d29b8e9f19 Mon Sep 17 00:00:00 2001 From: Tudor-Ovidiu Avram Date: Thu, 10 Dec 2020 14:51:51 +0200 Subject: [PATCH] Revert "fix(external_api) replace special chars in roomName before constructing URL" This reverts commit 6f90458ff17f53847c588da941c83791f6198005. --- react/features/base/util/uri.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/base/util/uri.js b/react/features/base/util/uri.js index 158d219cc..d9d7711dd 100644 --- a/react/features/base/util/uri.js +++ b/react/features/base/util/uri.js @@ -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('/')