Browse Source

Merge pull request #8230 from jitsi/tavram/revert-fixroom

Revert "fix(external_api) replace special chars in roomName before co…
master
Avram Tudor 4 years ago
parent
commit
148234ea50
No account linked to committer's email address
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