Hide overflow if the group call is not in the CONNECTED state.

This commit is contained in:
Alex Hart
2024-09-27 10:33:52 -03:00
parent 5394aaa44c
commit 5212088a1b

View File

@@ -166,7 +166,7 @@ public final class WebRtcControls {
}
public boolean displayOverflow() {
return isAtLeastOutgoing() && hasAtLeastOneRemote && isGroupCall();
return isAtLeastOutgoing() && hasAtLeastOneRemote && isGroupCall() && groupCallState == GroupCallState.CONNECTED;
}
public boolean displayMuteAudio() {