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

Commit 83cf7cb3 authored by Joe Bolinger's avatar Joe Bolinger Committed by Android (Google) Code Review
Browse files

Merge "Allow fingerprint fallback from any state." into sc-dev

parents 0ac141c3 103ee4b6
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;