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:
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user