1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-08-18 00:09:37 +02: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:
Mark McDowall 2020-07-26 10:49:39 -07:00 committed by Qstick
parent 18607c8b7b
commit ff52b15154

View File

@ -5,7 +5,7 @@ function createQueueItemSelector() {
(state, { movieId }) => movieId,
(state) => state.queue.details.items,
(movieId, details) => {
if (!movieId) {
if (!movieId || !details) {
return null;
}