Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix 'Lists' & 'Feeds' not displaying their contents on muted profiles (#10101)

authored by

RetroSunstar and committed by
GitHub
ce000ada 4d0774b7

+6 -2
+3 -1
src/state/queries/profile-feedgens.ts
··· 57 57 // filter by labels 58 58 .filter(list => { 59 59 const decision = moderateFeedGenerator(list, moderationOpts!) 60 - return !decision.ui('contentList').filter 60 + return !decision 61 + .ui('contentList') 62 + .filters.some(cause => cause.type !== 'muted') 61 63 }), 62 64 } 63 65 }),
+3 -1
src/state/queries/profile-lists.ts
··· 46 46 ...page, 47 47 lists: page.lists.filter(list => { 48 48 const decision = moderateUserList(list, moderationOpts!) 49 - return !decision.ui('contentList').filter 49 + return !decision 50 + .ui('contentList') 51 + .filters.some(cause => cause.type !== 'muted') 50 52 }), 51 53 } 52 54 }),