We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d26b092 commit 5cc94e5Copy full SHA for 5cc94e5
1 file changed
app/src/main/java/org/schabi/newpipe/player/Player.java
@@ -414,6 +414,10 @@ public void handleIntent(@NonNull final Intent intent) {
414
== com.google.android.exoplayer2.Player.STATE_IDLE) {
415
simpleExoPlayer.prepare();
416
}
417
+ if (playQueue.getIndex() != newQueue.getIndex()) {
418
+ simpleExoPlayer.seekTo(newQueue.getIndex(),
419
+ newQueue.getItem().getRecoveryPosition());
420
+ }
421
simpleExoPlayer.setPlayWhenReady(playWhenReady);
422
423
} else if (intent.getBooleanExtra(RESUME_PLAYBACK, false)
0 commit comments