diff options
Diffstat (limited to 'src/lib/api/feed-manip.ts')
-rw-r--r-- | src/lib/api/feed-manip.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/api/feed-manip.ts b/src/lib/api/feed-manip.ts index d81f250b8..eaa760b4b 100644 --- a/src/lib/api/feed-manip.ts +++ b/src/lib/api/feed-manip.ts @@ -271,7 +271,12 @@ export class FeedTuner { } } else { if (!dryRun) { - this.seenUris.add(item.post.uri) + // Reposting a reply elevates it to top-level, so its parent/root won't be displayed. + // Disable in-thread dedupe for this case since we don't want to miss them later. + const disableDedupe = slice.isReply && slice.isRepost + if (!disableDedupe) { + this.seenUris.add(item.post.uri) + } } } } |