Ensure clicking 'message' in contact modal does not unpip the active call
Co-authored-by: yash-signal <yash@signal.org>
This commit is contained in:
parent
614310b3bf
commit
1dbf1ce0a9
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ export const isInCall = createSelector(
|
||||||
export const isInFullScreenCall = createSelector(
|
export const isInFullScreenCall = createSelector(
|
||||||
getActiveCallState,
|
getActiveCallState,
|
||||||
(activeCallState: undefined | ActiveCallStateType): boolean =>
|
(activeCallState: undefined | ActiveCallStateType): boolean =>
|
||||||
Boolean(activeCallState?.pip)
|
Boolean(activeCallState && !activeCallState.pip)
|
||||||
);
|
);
|
||||||
|
|
||||||
export const getIncomingCall = createSelector(
|
export const getIncomingCall = createSelector(
|
||||||
|
|
Loading…
Reference in a new issue