Преглед изворни кода

fix(whiteboard) simplify room hash generation to cover custom region shards (#15345)

factor2
Mihaela Dumitru пре 6 месеци
родитељ
комит
05a930e5f5
No account linked to committer's email address
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      react/features/whiteboard/functions.ts

+ 1
- 1
react/features/whiteboard/functions.ts Прегледај датотеку

@@ -99,7 +99,7 @@ export const generateCollabServerUrl = (state: IReduxState): string | undefined
99 99
     const inBreakoutRoom = isInBreakoutRoom(state);
100 100
     const roomId = getCurrentRoomId(state);
101 101
     const room = md5.hex(
102
-        `${locationURL?.origin}${getBackendSafePath(locationURL?.pathname)}${inBreakoutRoom ? `|${roomId}` : ''}`
102
+        `${getBackendSafePath(locationURL?.pathname)}${inBreakoutRoom ? `|${roomId}` : ''}`
103 103
     );
104 104
 
105 105
     return appendURLParam(collabServerBaseUrl, 'room', room);

Loading…
Откажи
Сачувај