소스 검색

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

This reverts commit 6f90458ff1.
master
Tudor-Ovidiu Avram 4 년 전
부모
커밋
b23f4b02ea
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      react/features/base/util/uri.js

+ 1
- 1
react/features/base/util/uri.js 파일 보기

@@ -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…
취소
저장