Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix filtering uris of fetchSubjects (#4324)

authored by

Yoshihiro Sugi and committed by
GitHub
21d4d5f6 bda10510

+1 -1
+1 -1
src/state/queries/notifications/util.ts
··· 145 145 ): Promise<Map<string, AppBskyFeedDefs.PostView>> { 146 146 const uris = new Set<string>() 147 147 for (const notif of groupedNotifs) { 148 - if (notif.subjectUri && !notif.subjectUri.includes('feed.generator')) { 148 + if (notif.subjectUri?.includes('app.bsky.feed.post')) { 149 149 uris.add(notif.subjectUri) 150 150 } 151 151 }