1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-10 13:23:39 +00:00

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

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;
} }