diff options
author | dan <dan.abramov@gmail.com> | 2024-10-24 20:43:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-24 20:43:00 +0100 |
commit | 3327c479575da7f5b3c3a457ec53a24ad9a2cda1 (patch) | |
tree | f0b7dbbe3661288e936fc5cdb416ad8c6cc90d9c /src/view/com/util/post-embeds/QuoteEmbed.tsx | |
parent | e8a53dcea84afc3b313037dbaf059c68121eb9ab (diff) | |
download | voidsky-3327c479575da7f5b3c3a457ec53a24ad9a2cda1.tar.zst |
Include hydrated responses for other records (#5646)
* Include hydrated responses for other records * Rename meta -> view This is actually all it is now.
Diffstat (limited to 'src/view/com/util/post-embeds/QuoteEmbed.tsx')
-rw-r--r-- | src/view/com/util/post-embeds/QuoteEmbed.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/post-embeds/QuoteEmbed.tsx b/src/view/com/util/post-embeds/QuoteEmbed.tsx index 49cfb2150..2844d562b 100644 --- a/src/view/com/util/post-embeds/QuoteEmbed.tsx +++ b/src/view/com/util/post-embeds/QuoteEmbed.tsx @@ -284,7 +284,7 @@ export function LazyQuoteEmbed({uri}: {uri: string}) { if (!data || data.type !== 'record' || data.kind !== 'post') { return null } - return <QuoteEmbed quote={data.meta} /> + return <QuoteEmbed quote={data.view} /> } function viewRecordToPostView( |