mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 01:48:25 +03:00
dont skip if there is something to autofill
This commit is contained in:
parent
34fe7dd6d1
commit
eb4fa8620d
1 changed files with 2 additions and 3 deletions
|
@ -108,7 +108,7 @@ namespace Bit.Android
|
|||
{
|
||||
break;
|
||||
}
|
||||
else if(_appSettings.AutofillPasswordField)
|
||||
else if(_appSettings.AutofillPasswordField && AutofillActivity.LastCredentials == null)
|
||||
{
|
||||
CancelNotification(notificationManager);
|
||||
break;
|
||||
|
@ -202,10 +202,9 @@ namespace Bit.Android
|
|||
cancelNotification = false;
|
||||
}
|
||||
}
|
||||
|
||||
AutofillActivity.LastCredentials = null;
|
||||
}
|
||||
|
||||
AutofillActivity.LastCredentials = null;
|
||||
passwordNodes.Dispose();
|
||||
return cancelNotification;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue