Skip to content

Commit

Permalink
Fixed player resuming from start when clicking on a timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
Thompson3142 committed Nov 21, 2024
1 parent 1408150 commit 16c79c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/src/main/java/org/schabi/newpipe/player/Player.java
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,9 @@ public void handleIntent(@NonNull final Intent intent) {
if (oldPlayerType != playerType && playQueue != null) {
// If playerType changes from one to another we should reload the player
// (to disable/enable video stream or to set quality)
setRecovery();
if (playerType != PlayerType.POPUP) {
setRecovery();
}
reloadPlayQueueManager();
}

Expand Down

0 comments on commit 16c79c8

Please sign in to comment.