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

Commit f1cefb0b authored by Sahil Sonar's avatar Sahil Sonar 💬
Browse files

UdfpsController: Guard unconfigureDisplay skip against mIsUdfpsNodeFeatureEnabled

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