Skip to content

Commit b136c44

Browse files
Hide quote counts for quotegated posts (#5011)
1 parent 16d556c commit b136c44

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/view/com/post-thread/PostThreadItem.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,9 @@ let PostThreadItemLoaded = ({
398398
</Text>
399399
</Link>
400400
) : null}
401-
{post.quoteCount != null && post.quoteCount !== 0 ? (
401+
{post.quoteCount != null &&
402+
post.quoteCount !== 0 &&
403+
!post.viewer?.embeddingDisabled ? (
402404
<Link
403405
style={styles.expandedInfoItem}
404406
href={quotesHref}

0 commit comments

Comments
 (0)