playback: use implicit shuffle in detail playback
This commit is contained in:
parent
437d3391e7
commit
1a78e973d7
1 changed files with 4 additions and 4 deletions
|
@ -292,10 +292,10 @@ constructor(
|
|||
private fun expandMusicIntoCommand(music: Music, parent: MusicParent?) =
|
||||
when (music) {
|
||||
is Song -> expandSongIntoCommand(music, parent)
|
||||
is Album -> commandFactory.album(music, ShuffleMode.OFF)
|
||||
is Artist -> commandFactory.artist(music, ShuffleMode.OFF)
|
||||
is Genre -> commandFactory.genre(music, ShuffleMode.OFF)
|
||||
is Playlist -> commandFactory.playlist(music, ShuffleMode.OFF)
|
||||
is Album -> commandFactory.album(music, ShuffleMode.IMPLICIT)
|
||||
is Artist -> commandFactory.artist(music, ShuffleMode.IMPLICIT)
|
||||
is Genre -> commandFactory.genre(music, ShuffleMode.IMPLICIT)
|
||||
is Playlist -> commandFactory.playlist(music, ShuffleMode.IMPLICIT)
|
||||
}
|
||||
|
||||
private fun expandSongIntoCommand(music: Song, parent: MusicParent?) =
|
||||
|
|
Loading…
Reference in a new issue