diff --git a/src/components/MediaPlayer/VideoJS/components/js/VideoJSCurrentTime.js b/src/components/MediaPlayer/VideoJS/components/js/VideoJSCurrentTime.js index eb86e274..31d7441d 100644 --- a/src/components/MediaPlayer/VideoJS/components/js/VideoJSCurrentTime.js +++ b/src/components/MediaPlayer/VideoJS/components/js/VideoJSCurrentTime.js @@ -81,8 +81,9 @@ function CurrentTimeDisplay({ player, options }) { time = time + altStart; } // This state update caused weird lagging behaviors when using the iOS native - // player. iOS player handles its own time, so we can skip the update here. - if (!iOS) { setCurrTime(time); } + // video player. iOS player handles its own time, so we can skip the update here + // video items. + if (!(iOS && !player.audioOnlyMode_)) { setCurrTime(time); } setInitTime(0); };