fix(ios): currentPlaybackTime in ms and not seconds (#3472)
This commit is contained in:
		@@ -282,7 +282,7 @@ class RCTVideo: UIView, RCTVideoPlayerViewControllerDelegate, RCTPlayerObserverH
 | 
				
			|||||||
                "currentTime": NSNumber(value: Float(currentTimeSecs)),
 | 
					                "currentTime": NSNumber(value: Float(currentTimeSecs)),
 | 
				
			||||||
                "playableDuration": RCTVideoUtils.calculatePlayableDuration(_player, withSource: _source),
 | 
					                "playableDuration": RCTVideoUtils.calculatePlayableDuration(_player, withSource: _source),
 | 
				
			||||||
                "atValue": NSNumber(value: currentTime?.value ?? .zero),
 | 
					                "atValue": NSNumber(value: currentTime?.value ?? .zero),
 | 
				
			||||||
                "currentPlaybackTime": NSNumber(value: NSNumber(value: floor(currentPlaybackTime?.timeIntervalSince1970 ?? 0 * 1000)).int64Value),
 | 
					                "currentPlaybackTime": NSNumber(value: NSNumber(value: Double(currentPlaybackTime?.timeIntervalSince1970 ?? 0 * 1000)).int64Value),
 | 
				
			||||||
                "target": reactTag,
 | 
					                "target": reactTag,
 | 
				
			||||||
                "seekableDuration": RCTVideoUtils.calculateSeekableDuration(_player),
 | 
					                "seekableDuration": RCTVideoUtils.calculateSeekableDuration(_player),
 | 
				
			||||||
            ])
 | 
					            ])
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user