about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-08-28 16:57:18 -0500
committerGitHub <noreply@github.com>2024-08-28 16:57:18 -0500
commitb136c44287f1a4c202f4614da499f1e59a557bea (patch)
treea850c85d12c9b72bb3a62134eea81742cd6a1b44
parent16d556c3c9f825303be5aa27ab55dd6d386053aa (diff)
downloadvoidsky-b136c44287f1a4c202f4614da499f1e59a557bea.tar.zst
Hide quote counts for quotegated posts (#5011)
-rw-r--r--src/view/com/post-thread/PostThreadItem.tsx4
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}