From cfab35d4845847d0d2638f02f69b55143d1e3930 Mon Sep 17 00:00:00 2001 From: masarusanjp Date: Wed, 28 Feb 2018 11:15:42 +0900 Subject: [PATCH] fxied an issue that does not use passed argument --- ios/RCTVideo.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/RCTVideo.m b/ios/RCTVideo.m index 0f1227b1..53d2047d 100644 --- a/ios/RCTVideo.m +++ b/ios/RCTVideo.m @@ -93,7 +93,7 @@ static NSString *const timedMetadata = @"timedMetadata"; playerLayer.showsPlaybackControls = NO; playerLayer.rctDelegate = self; playerLayer.view.frame = self.bounds; - playerLayer.player = _player; + playerLayer.player = player; playerLayer.view.frame = self.bounds; return playerLayer; }