diff --git a/ios/Classes/VideoPlayerPlugin.m b/ios/Classes/VideoPlayerPlugin.m index 508c338..650f866 100755 --- a/ios/Classes/VideoPlayerPlugin.m +++ b/ios/Classes/VideoPlayerPlugin.m @@ -207,7 +207,9 @@ - (int64_t)duration { } - (void)seekTo:(int)location { - [_player seekToTime:CMTimeMake(location, 1000)]; + [_player seekToTime:CMTimeMake(location, 1000) + toleranceBefore:kCMTimeZero + toleranceAfter:kCMTimeZero]; } - (void)setIsLooping:(bool)isLooping {