Browse Source

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

Fixes: https://github.com/jitsi/jitsi-meet/issues/7900
master
Steffen Kolmer 5 years ago
parent
commit
6f90458ff1
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
     // pathname
514
     // pathname
515
 
515
 
516
     // Web's ExternalAPI roomName
516
     // Web's ExternalAPI roomName
517
-    const room = o.roomName || o.room;
517
+    const room = _fixRoom(o.roomName || o.room);
518
 
518
 
519
     if (room
519
     if (room
520
             && (url.pathname.endsWith('/')
520
             && (url.pathname.endsWith('/')

Loading…
Cancel
Save