mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 13:57:11 -04:00
Don't process queue item without details
(cherry picked from commit dffdd3377e198ca1ce511ec2752eb53c18c92cb3) # Conflicts: # frontend/src/Store/Selectors/createQueueItemSelector.js
This commit is contained in:
parent
18607c8b7b
commit
ff52b15154
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ function createQueueItemSelector() {
|
|||
(state, { movieId }) => movieId,
|
||||
(state) => state.queue.details.items,
|
||||
(movieId, details) => {
|
||||
if (!movieId) {
|
||||
if (!movieId || !details) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue