diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-09-03 18:33:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-03 18:33:16 +0100 |
commit | bd42f770b8b5144b6b292495a3193369fc726389 (patch) | |
tree | 7e88c0ac7d23d3f7793ce62af1a12a0463d5c07c /src/view/com/util/post-embeds/index.tsx | |
parent | dde72b48e12de0b87da60000b7705e475c795429 (diff) | |
download | voidsky-bd42f770b8b5144b6b292495a3193369fc726389.tar.zst |
show video in quote (#5093)
Diffstat (limited to 'src/view/com/util/post-embeds/index.tsx')
-rw-r--r-- | src/view/com/util/post-embeds/index.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/view/com/util/post-embeds/index.tsx b/src/view/com/util/post-embeds/index.tsx index e9cbf5d03..d9e075e77 100644 --- a/src/view/com/util/post-embeds/index.tsx +++ b/src/view/com/util/post-embeds/index.tsx @@ -86,6 +86,7 @@ export function PostEmbeds({ return <MaybeListCard view={embed.record} /> } + // starter pack embed if (AppBskyGraphDefs.isStarterPackViewBasic(embed.record)) { return <StarterPackCard starterPack={embed.record} /> } @@ -178,6 +179,8 @@ export function PostEmbeds({ ) } + // video embed + // = if (AppBskyEmbedVideo.isView(embed)) { return ( <ContentHider modui={moderation?.ui('contentMedia')}> |