mirror of
https://github.com/bitwarden/android.git
synced 2025-01-11 18:57:39 +03:00
replace all on updates
This commit is contained in:
parent
d958dc6bce
commit
3fff0617fe
1 changed files with 6 additions and 11 deletions
|
@ -159,24 +159,19 @@ namespace Bit.iOS
|
|||
Xamarin.Forms.Application.Current, "UpsertedCipher", async (sender, data) =>
|
||||
{
|
||||
if(await ASHelpers.IdentitiesCanIncremental())
|
||||
{
|
||||
if(data.Item2)
|
||||
{
|
||||
var identity = await ASHelpers.GetCipherIdentityAsync(data.Item1, _cipherService);
|
||||
if(identity == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
if(data.Item2)
|
||||
{
|
||||
await ASCredentialIdentityStore.SharedStore.SaveCredentialIdentitiesAsync(
|
||||
new ASPasswordCredentialIdentity[] { identity });
|
||||
}
|
||||
else
|
||||
{
|
||||
await ASCredentialIdentityStore.SharedStore.ReplaceCredentialIdentitiesAsync(
|
||||
new ASPasswordCredentialIdentity[] { identity });
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
await ASHelpers.ReplaceAllIdentities(_cipherService);
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue