dont skip if there is something to autofill

This commit is contained in:
Kyle Spearrin 2017-05-29 20:45:42 -04:00
parent 34fe7dd6d1
commit eb4fa8620d
1 changed files with 2 additions and 3 deletions

View File

@ -108,7 +108,7 @@ namespace Bit.Android
{ {
break; break;
} }
else if(_appSettings.AutofillPasswordField) else if(_appSettings.AutofillPasswordField && AutofillActivity.LastCredentials == null)
{ {
CancelNotification(notificationManager); CancelNotification(notificationManager);
break; break;
@ -202,10 +202,9 @@ namespace Bit.Android
cancelNotification = false; cancelNotification = false;
} }
} }
AutofillActivity.LastCredentials = null;
} }
AutofillActivity.LastCredentials = null;
passwordNodes.Dispose(); passwordNodes.Dispose();
return cancelNotification; return cancelNotification;
} }