mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-10 18:33:13 +01:00
Don't process queue item without details
This commit is contained in:
parent
2f3888f5ed
commit
62724e7054
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ function createQueueItemSelector() {
|
|||
(state, { albumId }) => albumId,
|
||||
(state) => state.queue.details.items,
|
||||
(albumId, details) => {
|
||||
if (!albumId) {
|
||||
if (!albumId || !details) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue