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.
This commit is contained in:
Alexander Bakker 2020-05-28 11:55:56 +02:00
parent 95180ba963
commit cc163f952f

View file

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