Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Point "Continue thread" at last shown post (#7060)

authored by

dan and committed by
GitHub
69f22b9d 48346edd

+4 -3
+4 -3
src/view/com/post-thread/PostThread.tsx
··· 421 421 </View> 422 422 ) 423 423 } else if (isThreadPost(item)) { 424 - if (!treeView && item.ctx.hasMoreSelfThread) { 425 - return <PostThreadLoadMore post={item.post} /> 426 - } 427 424 const prev = isThreadPost(posts[index - 1]) 428 425 ? (posts[index - 1] as ThreadPost) 429 426 : undefined ··· 435 432 (item.ctx.depth < 0 && !!item.parent) || item.ctx.depth > 1 436 433 const hasUnrevealedParents = 437 434 index === 0 && skeleton?.parents && maxParents < skeleton.parents.length 435 + 436 + if (!treeView && prev && item.ctx.hasMoreSelfThread) { 437 + return <PostThreadLoadMore post={prev.post} /> 438 + } 438 439 439 440 return ( 440 441 <View