Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Add explicit non-handling of detached quotes in embed (#5156)

authored by

Eric Bailey and committed by
GitHub
27cceb96 fa6f6f9e

+6
+6
bskyembed/src/components/embed.tsx
··· 158 158 return <Info>The quoted post is blocked.</Info> 159 159 } 160 160 161 + // Case 3.8: Detached quote post 162 + if (AppBskyEmbedRecord.isViewDetached(record)) { 163 + // Just don't show anything 164 + return null 165 + } 166 + 161 167 // Unknown embed type 162 168 return null 163 169 }