From 52b50ef0e91b4ab7234b58b0e95a9c68abe77853 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 31 Oct 2022 08:44:11 -0400 Subject: [PATCH] EF repos: fix attachments update (#2374) * fix attachments update * Update src/Infrastructure.EntityFramework/Repositories/CipherRepository.cs Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> * Update CipherRepository.cs Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> --- .../Repositories/CipherRepository.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Infrastructure.EntityFramework/Repositories/CipherRepository.cs b/src/Infrastructure.EntityFramework/Repositories/CipherRepository.cs index 6f81e5952f..c3268aa3fb 100644 --- a/src/Infrastructure.EntityFramework/Repositories/CipherRepository.cs +++ b/src/Infrastructure.EntityFramework/Repositories/CipherRepository.cs @@ -562,7 +562,8 @@ public class CipherRepository : Repository, var attachments = string.IsNullOrWhiteSpace(cipher.Attachments) ? new Dictionary() : JsonConvert.DeserializeObject>(cipher.Attachments); - attachments.Add(attachment.AttachmentId, JsonConvert.DeserializeObject(attachment.AttachmentData)); + var metaData = JsonConvert.DeserializeObject(attachment.AttachmentData); + attachments[attachment.AttachmentId] = metaData; cipher.Attachments = JsonConvert.SerializeObject(attachments); await dbContext.SaveChangesAsync();