Browse Source

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

This reverts commit 6f90458ff1.
j8
Tudor-Ovidiu Avram 4 years ago
parent
commit
b23f4b02ea
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      react/features/base/util/uri.js

+ 1
- 1
react/features/base/util/uri.js View File

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

Loading…
Cancel
Save