Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix icons on blurred posts (#3068)

authored by

Eric Bailey and committed by
GitHub
f8aa5fd0 cf8b0380

+2 -2
+1 -1
src/view/com/util/moderation/ContentHider.tsx
··· 46 46 ) 47 47 } 48 48 49 - const isMute = moderation.cause?.type === 'muted' 49 + const isMute = ['muted', 'muted-word'].includes(moderation.cause?.type || '') 50 50 const desc = describeModerationCause(moderation.cause, 'content') 51 51 return ( 52 52 <View testID={testID} style={[styles.outer, style]}>
+1 -1
src/view/com/util/moderation/PostHider.tsx
··· 47 47 ) 48 48 } 49 49 50 - const isMute = moderation.cause?.type === 'muted' 50 + const isMute = ['muted', 'muted-word'].includes(moderation.cause?.type || '') 51 51 const desc = describeModerationCause(moderation.cause, 'content') 52 52 return !override ? ( 53 53 <Pressable