diff --git a/app/utils/post_list/index.ts b/app/utils/post_list/index.ts index f9b17e4146..0be1911ee5 100644 --- a/app/utils/post_list/index.ts +++ b/app/utils/post_list/index.ts @@ -67,6 +67,11 @@ function combineUserActivityPosts(orderedPosts: Array) { continue; } + } else if (post.deleteAt) { + out.push(post); + + lastPostIsUserActivity = false; + combinedCount = 0; } else { const postIsUserActivity = Post.USER_ACTIVITY_POST_TYPES.includes(post.type); if (postIsUserActivity && lastPostIsUserActivity && combinedCount < MAX_COMBINED_SYSTEM_POSTS) {