Prevent crash

This commit is contained in:
M66B 2019-10-21 09:13:40 +02:00
parent 7060a62817
commit 8f23b74d2b
1 changed files with 8 additions and 8 deletions

View File

@ -868,9 +868,14 @@ public class Helper {
if (errorCode != BiometricPrompt.ERROR_NEGATIVE_BUTTON &&
errorCode != BiometricPrompt.ERROR_CANCELED &&
errorCode != BiometricPrompt.ERROR_USER_CANCELED)
ToastEx.makeText(activity,
errString + " (" + errorCode + ")",
Toast.LENGTH_LONG).show();
handler.post(new Runnable() {
@Override
public void run() {
ToastEx.makeText(activity,
"Error " + errorCode + ": " + errString,
Toast.LENGTH_LONG).show();
}
});
handler.post(cancelled);
}
@ -878,7 +883,6 @@ public class Helper {
@Override
public void onAuthenticationSucceeded(@NonNull BiometricPrompt.AuthenticationResult result) {
Log.i("Biometric succeeded");
setAuthenticated(activity);
handler.post(authenticated);
}
@ -886,10 +890,6 @@ public class Helper {
@Override
public void onAuthenticationFailed() {
Log.w("Biometric failed");
ToastEx.makeText(activity,
R.string.title_unexpected_error,
Toast.LENGTH_LONG).show();
handler.post(cancelled);
}
});