mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-07 21:42:16 -07: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, { albumId }) => albumId,
|
||||||
(state) => state.queue.details.items,
|
(state) => state.queue.details.items,
|
||||||
(albumId, details) => {
|
(albumId, details) => {
|
||||||
if (!albumId) {
|
if (!albumId || !details) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue