mirror of
https://github.com/Readarr/Readarr
synced 2025-12-25 09:47:14 +01:00
Don't process queue item without details
Signed-off-by: Robin Dadswell <robin@dadswell.email>
This commit is contained in:
parent
1f88450045
commit
c534ab570f
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