Skip to content

Commit

Permalink
Show loading state while joining a group call
Browse files Browse the repository at this point in the history
Co-authored-by: Rashad Sookram <rashad@signal.org>
  • Loading branch information
automated-signal and rashad-signal committed May 16, 2022
1 parent 4e76259 commit 2a55328
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ts/components/CallManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ const ActiveCallManager: React.FC<ActiveCallManagerPropsType> = ({
break;
}
case CallMode.Group: {
showCallLobby = activeCall.joinState === GroupCallJoinState.NotJoined;
showCallLobby = activeCall.joinState !== GroupCallJoinState.Joined;
isCallFull = activeCall.deviceCount >= activeCall.maxDevices;
({ groupMembers } = activeCall);
break;
Expand Down

0 comments on commit 2a55328

Please sign in to comment.