diff --git a/src/Api/Controllers/CiphersController.cs b/src/Api/Controllers/CiphersController.cs index abcff3c060..ff21749f77 100644 --- a/src/Api/Controllers/CiphersController.cs +++ b/src/Api/Controllers/CiphersController.cs @@ -206,13 +206,9 @@ namespace Bit.Api.Controllers } var ciphers = await _cipherRepository.GetManyByOrganizationIdAsync(orgIdGuid); - var cipherMatchKeys = ciphers.Select(c => c.Id); var collectionCiphers = await _collectionCipherRepository.GetManyByOrganizationIdAsync(orgIdGuid); - var collectionCiphersGroupDict = collectionCiphers - .Where(c => cipherMatchKeys.Contains(c.CipherId)) - .GroupBy(c => c.CipherId) - .ToDictionary(s => s.Key); + var collectionCiphersGroupDict = collectionCiphers.GroupBy(c => c.CipherId).ToDictionary(s => s.Key); var responses = ciphers.Select(c => new CipherMiniDetailsResponseModel(c, _globalSettings, collectionCiphersGroupDict));