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

Commit 6e699816 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Set pending client to null after timeout resumes"

parents 2f51fadc d04d6d51
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -559,8 +559,10 @@ public abstract class BiometricServiceBase extends SystemService
            FrameworkStatsLog.write(FrameworkStatsLog.BIOMETRIC_SYSTEM_HEALTH_ISSUE_DETECTED,
                    statsModality(), BiometricsProtoEnums.ISSUE_CANCEL_TIMED_OUT);

            ClientMonitor newClient = mPendingClient;
            mCurrentClient = null;
            startClient(mPendingClient, false);
            mPendingClient = null;
            startClient(newClient, false);
        }
    }