Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Remove client filtering of starter packs (#4753)

authored by

Hailey and committed by
GitHub
c1af767f a0756c53

+4 -12
+4 -12
src/state/queries/profile-lists.ts
··· 40 40 pages: data.pages.map(page => { 41 41 return { 42 42 ...page, 43 - lists: page.lists 44 - /* 45 - * Starter packs use a reference list, which we do not want to 46 - * show on profiles. At some point we could probably just filter 47 - * this out on the backend instead of in the client. 48 - */ 49 - .filter(l => l.purpose !== 'app.bsky.graph.defs#referencelist') 50 - // filter by labels 51 - .filter(list => { 52 - const decision = moderateUserList(list, moderationOpts!) 53 - return !decision.ui('contentList').filter 54 - }), 43 + lists: page.lists.filter(list => { 44 + const decision = moderateUserList(list, moderationOpts!) 45 + return !decision.ui('contentList').filter 46 + }), 55 47 } 56 48 }), 57 49 }