Merge "Hide UDFPS overlay on lockout" into sc-dev

This commit is contained in:
TreeHugger Robot
2021-06-25 00:45:01 +00:00
committed by Android (Google) Code Review

View File

@@ -178,6 +178,9 @@ class FingerprintAuthenticationClient extends AuthenticationClient<ISession> imp
} catch (RemoteException e) {
Slog.e(TAG, "Remote exception", e);
}
UdfpsHelper.hideUdfpsOverlay(getSensorId(), mUdfpsOverlayController);
mCallback.onClientFinished(this, false /* success */);
}
@Override
@@ -192,5 +195,8 @@ class FingerprintAuthenticationClient extends AuthenticationClient<ISession> imp
} catch (RemoteException e) {
Slog.e(TAG, "Remote exception", e);
}
UdfpsHelper.hideUdfpsOverlay(getSensorId(), mUdfpsOverlayController);
mCallback.onClientFinished(this, false /* success */);
}
}