Bluesky app fork with some witchin' additions 💫

Hide quote counts for quotegated posts (#5011)

authored by

Eric Bailey and committed by
GitHub
b136c442 16d556c3

+3 -1
+3 -1
src/view/com/post-thread/PostThreadItem.tsx
··· 398 398 </Text> 399 399 </Link> 400 400 ) : null} 401 - {post.quoteCount != null && post.quoteCount !== 0 ? ( 401 + {post.quoteCount != null && 402 + post.quoteCount !== 0 && 403 + !post.viewer?.embeddingDisabled ? ( 402 404 <Link 403 405 style={styles.expandedInfoItem} 404 406 href={quotesHref}