diff --git a/src/Api/Controllers/CollectionsController.cs b/src/Api/Controllers/CollectionsController.cs index 3eff8e3bbd..56d35f1a91 100644 --- a/src/Api/Controllers/CollectionsController.cs +++ b/src/Api/Controllers/CollectionsController.cs @@ -176,8 +176,7 @@ namespace Bit.Api.Controllers { collection = await _collectionRepository.GetByIdAsync(id); } - - if (await _currentContext.ViewAssignedCollections(orgId)) + else if (await _currentContext.ViewAssignedCollections(orgId)) { collection = await _collectionRepository.GetByIdAsync(id, _currentContext.UserId.Value); }