Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Proper fix to the previous panic fix: put threads at the end when they should be there

+3 -1
+3 -1
src/state/models/feed-view.ts
··· 610 610 let newIndex = reorg.findIndex( 611 611 item => new Date(item.indexedAt) < targetDate, 612 612 ) 613 - if (newIndex === -1) newIndex = 0 613 + if (newIndex === -1) { 614 + newIndex = reorg.length 615 + } 614 616 reorg.splice(newIndex, 0, ...removed) 615 617 slice.index = newIndex 616 618 }