fix(ios): default cropStart fallback (#4540)

This commit is contained in:
jason
2025-05-11 02:43:41 +12:00
committed by GitHub
parent 49173edd59
commit ecfe12aa81
+1 -1
View File
@@ -243,7 +243,7 @@ const Video = forwardRef<VideoRef, ReactVideoProps>(
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,