Fix unmuting both cam and mic at the same time

Test: Mute both sensors and open app which starts mic/cam use at the
same time
Fixes: 190468128

Change-Id: I738abe025f366f42b13b18c9e7593629691512eb
This commit is contained in:
Evan Severson
2021-06-22 15:21:02 -07:00
parent d616f1ed95
commit 6b6589ec88

View File

@@ -218,7 +218,12 @@ class SensorUseStartedActivity @Inject constructor(
}
private fun disableSensorPrivacy() {
sensorPrivacyController.setSensorBlocked(sensor, false)
if (sensor == ALL_SENSORS) {
sensorPrivacyController.setSensorBlocked(MICROPHONE, false)
sensorPrivacyController.setSensorBlocked(CAMERA, false)
} else {
sensorPrivacyController.setSensorBlocked(sensor, false)
}
unsuppressImmediately = true
setResult(RESULT_OK)
}