Guard auto-lower hand behind labs.

This commit is contained in:
Greyson Parrelli
2026-03-19 16:54:51 -04:00
committed by Cody Henthorne
parent 9594599d60
commit e657a4adf3
7 changed files with 27 additions and 4 deletions

View File

@@ -383,6 +383,10 @@ public class GroupConnectedActionProcessor extends GroupActionProcessor {
protected @NonNull WebRtcServiceState handleGroupCallSpeechEvent(@NonNull WebRtcServiceState currentState, @NonNull GroupCall.SpeechEvent speechEvent) {
Log.i(tag, "handleGroupCallSpeechEvent :: " + speechEvent.name());
if (!SignalStore.labs().getAutoLowerHand()) {
return currentState;
}
return currentState.builder()
.changeCallInfoState()
.setGroupCallSpeechEvent(new GroupCallSpeechEvent(speechEvent))