From ca750e226f2cb5cb31e8d1cf7e8e40ff8e231671 Mon Sep 17 00:00:00 2001 From: Thomas Rittson <31796059+eliykat@users.noreply.github.com> Date: Wed, 20 Dec 2023 09:27:53 +1000 Subject: [PATCH] Fix ciphers missing collectionId in sync data (#3594) --- src/Api/Vault/Controllers/SyncController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Api/Vault/Controllers/SyncController.cs b/src/Api/Vault/Controllers/SyncController.cs index cf7a978d87..5835b9ebed 100644 --- a/src/Api/Vault/Controllers/SyncController.cs +++ b/src/Api/Vault/Controllers/SyncController.cs @@ -96,6 +96,7 @@ public class SyncController : Controller { collections = await _collectionRepository.GetManyByUserIdAsync(user.Id, UseFlexibleCollections); var collectionCiphers = await _collectionCipherRepository.GetManyByUserIdAsync(user.Id, UseFlexibleCollections); + collectionCiphersGroupDict = collectionCiphers.GroupBy(c => c.CipherId).ToDictionary(s => s.Key); } var userTwoFactorEnabled = await _userService.TwoFactorIsEnabledAsync(user);