diff --git a/ios/Video/RCTVideo.swift b/ios/Video/RCTVideo.swift index baeac2bf..f341fc5c 100644 --- a/ios/Video/RCTVideo.swift +++ b/ios/Video/RCTVideo.swift @@ -563,6 +563,10 @@ class RCTVideo: UIView, RCTVideoPlayerViewControllerDelegate, RCTPlayerObserverH func applyModifiers() { + if let video = _player?.currentItem, + video == nil || video.status != AVPlayerItem.Status.readyToPlay { + return + } if _muted { if !_controls { _player?.volume = 0