This commit is contained in:
commit
b0eef98d13
1 changed files with 3 additions and 1 deletions
|
@ -294,7 +294,9 @@ export function CallScreen({
|
||||||
}
|
}
|
||||||
case CallMode.Group:
|
case CallMode.Group:
|
||||||
isRinging =
|
isRinging =
|
||||||
activeCall.outgoingRing && !activeCall.remoteParticipants.length;
|
activeCall.outgoingRing &&
|
||||||
|
!activeCall.remoteParticipants.length &&
|
||||||
|
!(groupMembers?.length === 1 && groupMembers[0].id === me.id);
|
||||||
hasCallStarted = activeCall.joinState !== GroupCallJoinState.NotJoined;
|
hasCallStarted = activeCall.joinState !== GroupCallJoinState.NotJoined;
|
||||||
participantCount = activeCall.remoteParticipants.length + 1;
|
participantCount = activeCall.remoteParticipants.length + 1;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue