Remote ring small groups feature flag.

This commit is contained in:
Cody Henthorne
2022-12-08 10:34:48 -05:00
committed by Alex Hart
parent fc2b67aa0f
commit e76bec63a3
5 changed files with 4 additions and 15 deletions

View File

@@ -602,7 +602,7 @@ public class WebRtcCallActivity extends BaseActivity implements SafetyNumberChan
}
public void handleGroupMemberCountChange(int count) {
boolean canRing = count <= FeatureFlags.maxGroupCallRingSize() && FeatureFlags.groupCallRinging();
boolean canRing = count <= FeatureFlags.maxGroupCallRingSize();
callScreen.enableRingGroup(canRing);
ApplicationDependencies.getSignalCallManager().setRingGroup(canRing);
}