diff options
author | Eric Bailey <git@esb.lol> | 2024-08-28 16:57:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-28 16:57:18 -0500 |
commit | b136c44287f1a4c202f4614da499f1e59a557bea (patch) | |
tree | a850c85d12c9b72bb3a62134eea81742cd6a1b44 /src | |
parent | 16d556c3c9f825303be5aa27ab55dd6d386053aa (diff) | |
download | voidsky-b136c44287f1a4c202f4614da499f1e59a557bea.tar.zst |
Hide quote counts for quotegated posts (#5011)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index f2a8be598..a3cfebbab 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -398,7 +398,9 @@ let PostThreadItemLoaded = ({ </Text> </Link> ) : null} - {post.quoteCount != null && post.quoteCount !== 0 ? ( + {post.quoteCount != null && + post.quoteCount !== 0 && + !post.viewer?.embeddingDisabled ? ( <Link style={styles.expandedInfoItem} href={quotesHref} |