From ecfe12aa816a3126e023d0c14896681d92fe8926 Mon Sep 17 00:00:00 2001 From: jason Date: Sun, 11 May 2025 02:43:41 +1200 Subject: [PATCH] fix(ios): default cropStart fallback (#4540) --- src/Video.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Video.tsx b/src/Video.tsx index bf4824d7..6d39f24a 100644 --- a/src/Video.tsx +++ b/src/Video.tsx @@ -243,7 +243,7 @@ const Video = forwardRef( patchVer: resolvedSource.patchVer || 0, requestHeaders: generateHeaderForNative(resolvedSource.headers), startPosition: resolvedSource.startPosition ?? -1, - cropStart: resolvedSource.cropStart || 0, + cropStart: resolvedSource.cropStart, cropEnd: resolvedSource.cropEnd, contentStartTime: selectedContentStartTime, metadata: resolvedSource.metadata,