Fix an issue where the password reminder popup was not shown

We no longer create BiometricPrompt prematurely, but forgot to adjust the check for the password reminder.
pull/445/head
Alexander Bakker 5 years ago
parent 95180ba963
commit cc163f952f

@ -178,7 +178,7 @@ public class AuthActivity extends AegisActivity {
@Override
public void onAttachedToWindow() {
if (_bioPrompt != null && _prefs.isPasswordReminderNeeded()) {
if (_bioKey != null && _prefs.isPasswordReminderNeeded()) {
showPasswordReminder();
}
}

Loading…
Cancel
Save