Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[local_auth] Fix incorrect switch fallthrough
  • Loading branch information
jiahaog committed Jan 29, 2021
commit 31f14563f68c45f5187d18416d0ebff4ec8a8c6c
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ public void onAuthenticationError(int errorCode, CharSequence errString) {
return;
}
completionHandler.onError("NotAvailable", "Security credentials not available.");
break;
case BiometricPrompt.ERROR_NO_SPACE:
case BiometricPrompt.ERROR_NO_BIOMETRICS:
if (promptInfo.isDeviceCredentialAllowed()) return;
Expand Down