mirror of
https://github.com/bitwarden/mobile.git
synced 2024-12-26 16:57:59 +01:00
Allow only non-deleted creds to be added to autofill (#1015)
This commit is contained in:
parent
10a78c1c94
commit
086c71126f
@ -29,7 +29,7 @@ namespace Bit.iOS.Core.Utilities
|
||||
var cipherService = ServiceContainer.Resolve<ICipherService>("cipherService");
|
||||
var identities = new List<ASPasswordCredentialIdentity>();
|
||||
var ciphers = await cipherService.GetAllDecryptedAsync();
|
||||
foreach (var cipher in ciphers)
|
||||
foreach (var cipher in ciphers.Where(x => !x.IsDeleted))
|
||||
{
|
||||
var identity = ToCredentialIdentity(cipher);
|
||||
if (identity != null)
|
||||
|
Loading…
Reference in New Issue
Block a user