diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-08-29 16:34:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-29 16:34:41 +0100 |
commit | 551c4a4f3210e5fa3060d06f4beeaeef3a97093d (patch) | |
tree | 23bccedc3f4a487ed15d540352c823ab466781a9 /src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx | |
parent | d52d29621e0f5df9cba16795d40db8a413248342 (diff) | |
download | voidsky-551c4a4f3210e5fa3060d06f4beeaeef3a97093d.tar.zst |
[Video] Add uploaded video to post (#4884)
* video uploads! * use video upload lexicons * add missing postgate * remove references to prerelease package * fix scrubber showing a "0" * Delete types.ts * rm logs * rm upload header --------- Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com>
Diffstat (limited to 'src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx')
-rw-r--r-- | src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx b/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx index 7a4c6e914..c97f5e935 100644 --- a/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx +++ b/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx @@ -557,7 +557,7 @@ function Scrubber({ {backgroundColor: 'rgba(255, 255, 255, 0.4)'}, {height: hovered || scrubberActive ? 6 : 3}, ]}> - {currentTime && duration && ( + {currentTime > 0 && duration > 0 && ( <View style={[ a.h_full, |