1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

Fix UpdateCiphersAsync

This commit is contained in:
Justin Baur 2025-03-23 08:02:35 -04:00
parent ad2a967368
commit c51342429d
No known key found for this signature in database

View File

@ -864,7 +864,10 @@ public class CipherRepository : Repository<Core.Vault.Entities.Cipher, Cipher, G
{
var dbContext = GetDatabaseContext(scope);
var entities = Mapper.Map<List<Cipher>>(ciphers);
await dbContext.BulkCopyAsync(base.DefaultBulkCopyOptions, entities);
foreach (var cipher in entities)
{
dbContext.Ciphers.Attach(cipher);
}
await dbContext.UserBumpAccountRevisionDateAsync(userId);
await dbContext.SaveChangesAsync();
}