mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-04 20:30:36 +00:00
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:
parent
95180ba963
commit
cc163f952f
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue