mirror of
https://github.com/Readarr/Readarr
synced 2026-03-19 19:13:24 +01:00
Don't process queue item without details
Signed-off-by: Robin Dadswell <robin@dadswell.email>
This commit is contained in:
parent
cdf648670d
commit
2abee1970f
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ function createQueueItemSelector() {
|
|||
(state, { bookId }) => bookId,
|
||||
(state) => state.queue.details.items,
|
||||
(bookId, details) => {
|
||||
if (!bookId) {
|
||||
if (!bookId || !details) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue