Merge pull request #445 from alexbakker/fix-reminder

Fix an issue where the password reminder popup was not shown
This commit is contained in:
Michael Schättgen 2020-06-06 13:51:53 +02:00 committed by GitHub
commit 626995ec91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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