1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

pm-9483 Update model attachments (#3344)

This commit is contained in:
Carlos Gonçalves
2024-07-08 15:27:11 +01:00
committed by GitHub
parent 8a43bb4655
commit b81ce44cc7

View File

@@ -114,7 +114,7 @@ namespace Bit.Core.Services
public async Task<Cipher> EncryptAsync(CipherView model, SymmetricCryptoKey key = null,
Cipher originalCipher = null)
{
// Adjust password history
// Adjust password history and attachments
if (model.Id != null)
{
if (originalCipher == null)
@@ -169,6 +169,9 @@ namespace Bit.Core.Services
}
}
}
//adjust attachments
model.Attachments = existingCipher.Attachments;
}
if (!model.PasswordHistory?.Any() ?? false)
{