fix: update playbackRate after switching qualities

This commit is contained in:
Omar Roth 2020-03-02 11:46:20 -05:00
parent 06b18e4a17
commit f200d0102e
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2
1 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@ module.exports = function(videojs) {
function changeQuality(event, newSource) {
var sources = player.currentSources(),
currentTime = player.currentTime(),
currentPlaybackRate = player.playbackRate(),
isPaused = player.paused(),
selectedSource;
@ -49,6 +50,7 @@ module.exports = function(videojs) {
// player's `src` is updated but the player's `currentTime` has not yet
// been set by the SafeSeek operation.
player._qualitySelectorSafeSeek = new SafeSeek(player, currentTime);
player.playbackRate(currentPlaybackRate);
}
if (!isPaused) {