Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client
122
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove reposts from the Replies tab (#4669)

authored by

dan and committed by
GitHub
d26928a5 58102377

+6
+6
src/state/preferences/feed-tuners.tsx
··· 12 12 const {currentAccount} = useSession() 13 13 14 14 return useMemo(() => { 15 + if (feedDesc.startsWith('author')) { 16 + if (feedDesc.endsWith('|posts_with_replies')) { 17 + // TODO: Do this on the server instead. 18 + return [FeedTuner.removeReposts] 19 + } 20 + } 15 21 if (feedDesc.startsWith('feedgen')) { 16 22 return [ 17 23 FeedTuner.dedupReposts,