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

Commit 1602f2be authored by Joshua Mccloskey's avatar Joshua Mccloskey Committed by Automerger Merge Worker
Browse files

Merge "Set pending client to null after timeout resumes" into rvc-dev am:...

Merge "Set pending client to null after timeout resumes" into rvc-dev am: a0222398 am: e923b519 am: 60452a2c

Change-Id: I9c1d7b75b8e5152996243327fa4c697b7ea8d669
parents cd434a39 60452a2c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -558,8 +558,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);
        }
    }