Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9a879560 authored by Sahil Sonar's avatar Sahil Sonar 💬
Browse files

UdfpsController: Guard unconfigureDisplay skip against mIsUdfpsNodeFeatureEnabled

  - Avoid altering behaviour for other devices.
parent 82223bb1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -908,7 +908,7 @@ public class UdfpsController implements DozeReceiver, Dumpable {
        }

        // Check if the fingerprint is still pressed before proceeding
        if (mOnFingerDown) {
        if (mIsUdfpsNodeFeatureEnabled && mOnFingerDown) {
            Log.v(TAG, "Fingerprint is still pressed; skipping unconfigureDisplay.");
            return;
        }