Show replies in the main feed if they have 2 or more upvotes (#269)

zio/stable
Paul Frazee 2023-03-06 14:49:42 -06:00 committed by GitHub
parent f84a379376
commit 74c30c60b8
1 changed files with 2 additions and 1 deletions

View File

@ -263,7 +263,8 @@ export class FeedModel {
!item.reply || // not a reply
isRepost || // but allow if it's a repost or thread
item._isThreadParent ||
item._isThreadChild
item._isThreadChild ||
item.post.upvoteCount >= 2
)
})
}