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

Commit 57e66942 authored by Sahil Sonar's avatar Sahil Sonar 💬 Committed by Nishith Khanna
Browse files

UdfpsController: Guard unconfigureDisplay skip against mIsUdfpsNodeFeatureEnabled

  - Avoid altering behaviour for other devices.
parent ae1f829d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -966,7 +966,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;
        }