Skip to content

Commit

Permalink
Merge pull request #1591 from rahul-gill/fix_queue_ord
Browse files Browse the repository at this point in the history
fix #1577: incorrect play queue order
  • Loading branch information
prathameshmm02 committed Dec 30, 2023
2 parents 4c3a429 + f2b33c3 commit 1859354
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ object MusicPlayerRemote : KoinComponent {
) && musicService != null
) {
musicService?.openQueue(queue, startPosition, startPlaying)
setShuffleMode(MusicService.SHUFFLE_MODE_NONE)
}
}

Expand All @@ -234,7 +235,7 @@ object MusicPlayerRemote : KoinComponent {
startPlaying
) && musicService != null
) {
openQueue(queue, startPosition, startPlaying)
musicService?.openQueue(queue, startPosition, startPlaying)
setShuffleMode(MusicService.SHUFFLE_MODE_SHUFFLE)
}
}
Expand Down

0 comments on commit 1859354

Please sign in to comment.