Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix to feed update

+1 -1
+1 -1
src/state/models/feed-view.ts
··· 477 477 const existingItem = this.feed.find( 478 478 // HACK: need to find the reposts and trends item, so we have to check for that -prf 479 479 item2 => 480 - item.uri === item2.post.uri && 480 + item.post.uri === item2.post.uri && 481 481 item.reason?.$trend === item2.reason?.$trend && 482 482 // @ts-ignore todo 483 483 item.reason?.by?.did === item2.reason?.by?.did,