Fixed player resuming from start when clicking on a timestamp
This commit is contained in:
parent
14081505cd
commit
16c79c8219
1 changed files with 3 additions and 1 deletions
|
@ -462,7 +462,9 @@ public final class Player implements PlaybackListener, Listener {
|
||||||
if (oldPlayerType != playerType && playQueue != null) {
|
if (oldPlayerType != playerType && playQueue != null) {
|
||||||
// If playerType changes from one to another we should reload the player
|
// If playerType changes from one to another we should reload the player
|
||||||
// (to disable/enable video stream or to set quality)
|
// (to disable/enable video stream or to set quality)
|
||||||
setRecovery();
|
if (playerType != PlayerType.POPUP) {
|
||||||
|
setRecovery();
|
||||||
|
}
|
||||||
reloadPlayQueueManager();
|
reloadPlayQueueManager();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue