diff --git a/src/Api/Controllers/CollectionsController.cs b/src/Api/Controllers/CollectionsController.cs index 6b474f519c..5cfa8082bc 100644 --- a/src/Api/Controllers/CollectionsController.cs +++ b/src/Api/Controllers/CollectionsController.cs @@ -495,7 +495,7 @@ public class CollectionsController : Controller private async Task Get_vNext(Guid collectionId) { - var collection = await _collectionRepository.GetByIdAsync(collectionId, _currentContext.UserId.Value); + var collection = await _collectionRepository.GetByIdAsync(collectionId); var authorized = (await _authorizationService.AuthorizeAsync(User, collection, CollectionOperations.Read)).Succeeded; if (!authorized) {