diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/state/models/feed-view.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/state/models/feed-view.ts b/src/state/models/feed-view.ts index 2ac88d2eb..92c394dfa 100644 --- a/src/state/models/feed-view.ts +++ b/src/state/models/feed-view.ts @@ -209,7 +209,12 @@ export class FeedModel { get nonReplyFeed() { return this.feed.filter( - post => !post.record.reply || post._isThreadParent || post._isThreadChild, + post => + !post.record.reply || // not a reply + !!post.repostedBy || // or a repost + !!post.trendedBy || // or a trend + post._isThreadParent || // but allow if it's a thread by the user + post._isThreadChild, ) } |