From 6c6a76b193edfd8bd46139b85fefd684ee557a8c Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Sun, 8 Sep 2024 16:27:50 +0100 Subject: [Video] Upload tweaks (#5228) * use correct mime type * fix wheel progress --- src/view/com/composer/Composer.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/view/com/composer/Composer.tsx') diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index 25ed6c769..a637b5996 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -1154,10 +1154,12 @@ function VideoUploadToolbar({state}: {state: VideoUploadState}) { const progress = state.jobStatus?.progress ? state.jobStatus.progress / 100 : state.progress - let wheelProgress = progress === 0 || progress === 1 ? 0.33 : progress + const shouldRotate = + state.status === 'processing' && (progress === 0 || progress === 1) + let wheelProgress = shouldRotate ? 0.33 : progress const rotate = useDerivedValue(() => { - if (progress === 0 || progress >= 0.99) { + if (shouldRotate) { return withRepeat( withTiming(360, { duration: 2500, -- cgit 1.4.1