Make startCallLobby resilient to re-entrant calls
This commit is contained in:
parent
be4036f4ab
commit
b9cd858ec7
6 changed files with 498 additions and 150 deletions
|
@ -90,7 +90,9 @@ export const getPreferredTheme = createSelector(
|
|||
const getIsInFullScreenCall = createSelector(
|
||||
(state: StateType): CallingStateType => state.calling,
|
||||
(state: CallingStateType): boolean =>
|
||||
Boolean(state.activeCallState && !state.activeCallState.pip)
|
||||
Boolean(
|
||||
state.activeCallState?.state === 'Active' && !state.activeCallState.pip
|
||||
)
|
||||
);
|
||||
|
||||
export const getTheme = createSelector(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue