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

Commit 0ef4f6c5 authored by Kevin Chyn's avatar Kevin Chyn Committed by android-build-merger
Browse files

Merge "Log authentication rejection" into qt-dev

am: c85cbfbf

Change-Id: I7eea3dfadd417a60b370145bd284de9ee17e793c
parents 7d8554a1 c85cbfbf
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -129,13 +129,16 @@ public abstract class AuthenticationClient extends ClientMonitor {
        boolean result = false;

        try {
            if (authenticated) {
                mAlreadyDone = true;
                if (DEBUG) Slog.v(getLogTag(), "onAuthenticated(" + getOwnerString()
            if (DEBUG) Slog.v(getLogTag(), "onAuthenticated(" + authenticated + ")"
                    + ", ID:" + identifier.getBiometricId()
                    + ", Owner: " + getOwnerString()
                    + ", isBP: " + isBiometricPrompt()
                    + ", listener: " + listener
                    + ", requireConfirmation: " + mRequireConfirmation);

            if (authenticated) {
                mAlreadyDone = true;

                if (listener != null) {
                    vibrateSuccess();
                }