From dcea67eb963c24a5876c75621dd15ecef8dc197c Mon Sep 17 00:00:00 2001 From: anderslemke Date: Thu, 3 Jun 2021 15:11:57 +0200 Subject: [PATCH] Make sure modifiers are applied before playing --- ios/Video/RCTVideo.m | 1 + 1 file changed, 1 insertion(+) diff --git a/ios/Video/RCTVideo.m b/ios/Video/RCTVideo.m index 989167a6..8811b65c 100644 --- a/ios/Video/RCTVideo.m +++ b/ios/Video/RCTVideo.m @@ -383,6 +383,7 @@ static int const RCTVideoUnset = -1; } self->_player = [AVPlayer playerWithPlayerItem:self->_playerItem]; + [self applyModifiers]; self->_player.actionAtItemEnd = AVPlayerActionAtItemEndNone; [self->_player addObserver:self forKeyPath:playbackRate options:0 context:nil];