Passing shuffle from action, fixes #391

This commit is contained in:
James Barnsley
2019-05-01 17:10:46 +12:00
parent 99f0bb1f41
commit f789f19311

View File

@ -274,10 +274,11 @@ export function playAlbum(uri){
}
}
export function playPlaylist(uri){
export function playPlaylist(uri, shuffle = false){
return {
type: 'MOPIDY_PLAY_PLAYLIST',
uri: uri
uri: uri,
shuffle: shuffle
}
}