1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-08-19 22:03:36 +02: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;
}
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;
}