Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix missing metrics in post threads

+3
+3
src/view/com/post-thread/PostThreadItem.tsx
··· 307 307 itemHref={itemHref} 308 308 itemTitle={itemTitle} 309 309 isAuthor={item.post.author.did === store.me.did} 310 + replyCount={item.post.replyCount} 311 + repostCount={item.post.repostCount} 312 + upvoteCount={item.post.upvoteCount} 310 313 isReposted={!!item.post.viewer.repost} 311 314 isUpvoted={!!item.post.viewer.upvote} 312 315 onPressReply={onPressReply}