diff --git a/packages/SystemUI/src/com/android/keyguard/DisabledUdfpsController.java b/packages/SystemUI/src/com/android/keyguard/DisabledUdfpsController.java index 945c9c4994013..118f98da11e2d 100644 --- a/packages/SystemUI/src/com/android/keyguard/DisabledUdfpsController.java +++ b/packages/SystemUI/src/com/android/keyguard/DisabledUdfpsController.java @@ -154,7 +154,9 @@ public class DisabledUdfpsController extends ViewController i @Override public void onBiometricRunningStateChanged(boolean running, BiometricSourceType biometricSourceType) { - mRunningFPS = running && biometricSourceType == FINGERPRINT; + if (biometricSourceType == FINGERPRINT) { + mRunningFPS = running; + } mAuthenticated &= !mRunningFPS; updateButtonVisibility(); }