Show replies in the main feed if they have 2 or more upvotes (#269)
This commit is contained in:
parent
f84a379376
commit
74c30c60b8
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
)
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue