diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-19 12:30:28 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-19 12:30:28 -0600 |
commit | 9230d52ff596056429a773298b2728619afe3432 (patch) | |
tree | f388a79f13512caa1aa0478afc688b29ab2f085b /src/view/com/composer/ComposePost.tsx | |
parent | 0536a6afcfce0ef2bebfc7cacf13d3d80ef82229 (diff) | |
download | voidsky-9230d52ff596056429a773298b2728619afe3432.tar.zst |
Improve link meta fetching for bsky links (#54)
* Add share dropdown item to profiles * Temporary improvement for links to content on the network * Enlarge text slightly on embed cards
Diffstat (limited to 'src/view/com/composer/ComposePost.tsx')
-rw-r--r-- | src/view/com/composer/ComposePost.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/composer/ComposePost.tsx b/src/view/com/composer/ComposePost.tsx index 228b11035..a8def6405 100644 --- a/src/view/com/composer/ComposePost.tsx +++ b/src/view/com/composer/ComposePost.tsx @@ -94,7 +94,7 @@ export const ComposePost = observer(function ComposePost({ return cleanup } if (!extLink.meta) { - getLinkMeta(extLink.uri).then(meta => { + getLinkMeta(store, extLink.uri).then(meta => { if (aborted) { return } |