We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8860890 commit e2a244bCopy full SHA for e2a244b
src/lib/api/feed-manip.ts
@@ -271,7 +271,12 @@ export class FeedTuner {
271
}
272
} else {
273
if (!dryRun) {
274
- this.seenUris.add(item.post.uri)
+ // Reposting a reply elevates it to top-level, so its parent/root won't be displayed.
275
+ // Disable in-thread dedupe for this case since we don't want to miss them later.
276
+ const disableDedupe = slice.isReply && slice.isRepost
277
+ if (!disableDedupe) {
278
+ this.seenUris.add(item.post.uri)
279
+ }
280
281
282
0 commit comments