Don't show "playing/paused" icon on the first song when calling "Play Now"

This commit is contained in:
Deluan 2021-07-05 21:45:20 -04:00
parent 24d4c81b34
commit b34d77f85a
1 changed files with 0 additions and 7 deletions

View File

@ -110,15 +110,8 @@ const reduceSetVolume = (state, { data: { volume } }) => {
}
const reduceSyncQueue = (state, { data: { audioInfo, audioLists } }) => {
const current = audioLists.length > 0 ? audioInfo : {}
const savedPlayIndex = audioLists.findIndex(
(item) => item.uuid === current.uuid
)
return {
...state,
current,
savedPlayIndex,
queue: audioLists,
clear: false,
playIndex: undefined,