Fix play single song action

This commit is contained in:
Deluan 2021-07-03 22:29:59 -04:00
parent 114fdce09e
commit 27ba267b38
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ const reducePlayTracks = (state, { data, id }) => {
const reduceSetTrack = (state, { data }) => {
return {
...state,
queue: [mapToAudioLists(0, data)],
queue: [mapToAudioLists(data)],
playIndex: 0,
clear: true,
}