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

Commit 103ee4b6 authored by Joe Bolinger's avatar Joe Bolinger
Browse files

Allow fingerprint fallback from any state.

Fix: 191853865
Test: manual
Change-Id: I76289daa37dc05618cc22dd287898e5e45647899
parent c2af7928
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -542,9 +542,9 @@ public final class AuthSession implements IBinder.DeathRecipient {

        if (mState != STATE_AUTH_STARTED
                && mState != STATE_AUTH_STARTED_UI_SHOWING
                && mState != STATE_AUTH_PAUSED) {
            Slog.e(TAG, "onStartFingerprint, unexpected state: " + mState);
            return;
                && mState != STATE_AUTH_PAUSED
                && mState != STATE_ERROR_PENDING_SYSUI) {
            Slog.w(TAG, "onStartFingerprint, started from unexpected state: " + mState);
        }

        mMultiSensorState = MULTI_SENSOR_STATE_FP_SCANNING;