Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix an issue that caused the feed to rearrange on loadmore

+2 -1
+2 -1
src/state/models/feed-view.ts
··· 439 439 ) { 440 440 this.loadMoreCursor = res.data.cursor 441 441 this.hasMore = !!this.loadMoreCursor 442 + const orgLen = this.feed.length 442 443 443 444 const reorgedFeed = preprocessFeed(res.data.feed) 444 445 ··· 458 459 this.feed = this.feed.concat(toAppend) 459 460 } 460 461 dedupReposts(this.feed) 461 - dedupParents(this.feed) 462 + dedupParents(this.feed.slice(orgLen)) // we slice to avoid modifying rendering of already-shown posts 462 463 }) 463 464 } 464 465