Do not register lift when sensor is not present

Bug: 141284056
Fixes: 142365481
Test: force snesor to return null
Change-Id: I45583e4f1c06ec7088a7d6335597a8671555f339
(cherry picked from commit 3b745ddf4a)
This commit is contained in:
Lucas Dupin
2019-09-23 11:54:56 -07:00
parent c60e032391
commit 0a410d3a6c

View File

@@ -67,6 +67,9 @@ class KeyguardLiftController constructor(
}
private fun updateListeningState() {
if (pickupSensor == null) {
return
}
val onKeyguard = keyguardUpdateMonitor.isKeyguardVisible &&
!statusBarStateController.isDozing