|
@@ -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);
|