diff --git a/ghost/posts-service/lib/PostsService.js b/ghost/posts-service/lib/PostsService.js index db2840b873..a02f353ed0 100644 --- a/ghost/posts-service/lib/PostsService.js +++ b/ghost/posts-service/lib/PostsService.js @@ -43,7 +43,7 @@ class PostsService { */ async browsePosts(options) { let posts; - if (this.isSet('collections') && options.collection) { + if (options.collection) { let collection = await this.collectionsService.getById(options.collection); if (!collection) {