Skip to content

Commit

Permalink
Fix biometric authentication error
Browse files Browse the repository at this point in the history
  • Loading branch information
doubleangels committed Feb 25, 2025
1 parent a55d36b commit d1ad769
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,13 +201,11 @@ public void onAuthenticationSucceeded() {

@Override
public void onAuthenticationError(String error) {
SentryManager.captureStaticException(new Exception("Biometric authentication error: " + error));
finish();
}

@Override
public void onAuthenticationFailed() {
SentryManager.captureStaticException(new Exception("Biometric authentication failed!"));
finish();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,13 +213,11 @@ public void onAuthenticationSucceeded() {

@Override
public void onAuthenticationError(String error) {
SentryManager.captureStaticException(new Exception("Biometric authentication error: " + error));
finish();
}

@Override
public void onAuthenticationFailed() {
SentryManager.captureStaticException(new Exception("Biometric authentication failed!"));
finish();
}
}
Expand Down

0 comments on commit d1ad769

Please sign in to comment.