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 8ab2727 commit 0aa2266Copy full SHA for 0aa2266
1 file changed
app/src/main/java/org/schabi/newpipe/player/Player.java
@@ -388,6 +388,10 @@ public void handleIntent(@NonNull final Intent intent) {
388
== com.google.android.exoplayer2.Player.STATE_IDLE) {
389
simpleExoPlayer.prepare();
390
}
391
+ if (playQueue.getIndex() != newQueue.getIndex()) {
392
+ simpleExoPlayer.seekTo(newQueue.getIndex(),
393
+ newQueue.getItem().getRecoveryPosition());
394
+ }
395
simpleExoPlayer.setPlayWhenReady(playWhenReady);
396
397
} else if (intent.getBooleanExtra(RESUME_PLAYBACK, false)
0 commit comments