diff options
author | Hailey <me@haileyok.com> | 2024-10-07 14:09:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-07 14:09:47 -0700 |
commit | ee25b89801c7038a95eb95500082dbccccb5cba9 (patch) | |
tree | 265b9380950ffa95d6fbfc8763cb5d6abc3500da /src/view/com/composer/Composer.tsx | |
parent | 94e7bfbe40ba6766361caaba99feff74a187613a (diff) | |
download | voidsky-ee25b89801c7038a95eb95500082dbccccb5cba9.tar.zst |
[Video] Add dimension info to share intent (#5639)
Diffstat (limited to 'src/view/com/composer/Composer.tsx')
-rw-r--r-- | src/view/com/composer/Composer.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index 94c02767e..0189ca9a8 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -218,7 +218,7 @@ export const ComposePost = ({ // Whenever we receive an initial video uri, we should immediately run compression if necessary useEffect(() => { if (initVideoUri) { - selectVideo({uri: initVideoUri} as ImagePickerAsset) + selectVideo(initVideoUri) } }, [initVideoUri, selectVideo]) |