diff --git a/src/state/preferences/feed-tuners.tsx b/src/state/preferences/feed-tuners.tsx index ca0fefe9..7d445151 100644 --- a/src/state/preferences/feed-tuners.tsx +++ b/src/state/preferences/feed-tuners.tsx @@ -12,6 +12,12 @@ export function useFeedTuners(feedDesc: FeedDescriptor) { const {currentAccount} = useSession() return useMemo(() => { + if (feedDesc.startsWith('author')) { + if (feedDesc.endsWith('|posts_with_replies')) { + // TODO: Do this on the server instead. + return [FeedTuner.removeReposts] + } + } if (feedDesc.startsWith('feedgen')) { return [ FeedTuner.dedupReposts,