fix: ensure save doesn't crash on android (#3415)
Co-authored-by: olivier <olivier.bouillet@ifeelsmart.com>
This commit is contained in:
@@ -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(() => {
|
||||
|
Reference in New Issue
Block a user