diff --git a/ghost/collections/src/CollectionsService.ts b/ghost/collections/src/CollectionsService.ts index 7253573acb..20705a96c8 100644 --- a/ghost/collections/src/CollectionsService.ts +++ b/ghost/collections/src/CollectionsService.ts @@ -368,7 +368,7 @@ export class CollectionsService { return; } - this.updatePostsInCollections(postIds, collections, transaction); + await this.updatePostsInCollections(postIds, collections, transaction); }); } @@ -386,7 +386,7 @@ export class CollectionsService { return; } - this.updatePostsInCollections(postIds, collections, transaction); + await this.updatePostsInCollections(postIds, collections, transaction); }); }