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

Commit e3299b60 authored by Eric Biggers's avatar Eric Biggers Committed by Android (Google) Code Review
Browse files

Merge "Log errors in verifyChallengeInternal()"

parents 51687c25 b60583c3
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1576,8 +1576,10 @@ class SyntheticPasswordManager {
            }
            return result;
        } else if (responseCode == GateKeeperResponse.RESPONSE_RETRY) {
            Slog.e(TAG, "Gatekeeper verification of synthetic password failed with RESPONSE_RETRY");
            return VerifyCredentialResponse.fromTimeout(response.getTimeout());
        } else {
            Slog.e(TAG, "Gatekeeper verification of synthetic password failed with RESPONSE_ERROR");
            return VerifyCredentialResponse.ERROR;
        }
    }