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:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user