|
@ -612,8 +612,8 @@ const playQueueSlice = createSlice({ |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
state.current = { ...state[currentEntry][state.currentIndex] }; |
|
|
state.current = { ...state[currentEntry][state.currentIndex] }; |
|
|
state.currentSongId = state[currentEntry][state.currentIndex].id; |
|
|
state.currentSongId = state[currentEntry][state.currentIndex]?.id; |
|
|
state.currentSongUniqueId = state[currentEntry][state.currentIndex].uniqueId; |
|
|
state.currentSongUniqueId = state[currentEntry][state.currentIndex]?.uniqueId; |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|