Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix quote post moderation check (#2149)

* Fix quote post moderation check

* Restore the ContentHider check

* Apply the content hider to quote posts

---------

Co-authored-by: Paul Frazee <pfrazee@gmail.com>

authored by

Eric Bailey
Paul Frazee
and committed by
GitHub
0270ada9 1b8b1b2e

+3 -1
+3 -1
src/view/com/util/post-embeds/index.tsx
··· 95 95 // quote post 96 96 // = 97 97 return ( 98 - <MaybeQuoteEmbed embed={embed} style={style} moderation={moderation} /> 98 + <ContentHider moderation={moderation}> 99 + <MaybeQuoteEmbed embed={embed} style={style} moderation={moderation} /> 100 + </ContentHider> 99 101 ) 100 102 } 101 103