fix: ensure save doesn't crash on android (#3415)

Co-authored-by: olivier <olivier.bouillet@ifeelsmart.com>
This commit is contained in:
Olivier Bouillet
2023-12-10 15:53:48 +01:00
committed by GitHub
parent 2462800c9a
commit 22a2655dca
2 changed files with 18 additions and 15 deletions

View File

@@ -243,7 +243,8 @@ const Video = forwardRef<VideoRef, ReactVideoProps>(
}, [setIsFullscreen]);
const save = useCallback((options: object) => {
return VideoManager.save(options, getReactTag(nativeRef));
// VideoManager.save can be null on android & windows
return VideoManager.save?.(options, getReactTag(nativeRef));
}, []);
const pause = useCallback(() => {