mirror of
https://github.com/Sonarr/Sonarr
synced 2026-05-05 19:40:56 +02:00
Episodes for queue item should not be null
This commit is contained in:
parent
69878deff7
commit
b4af5c30b7
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ private IEnumerable<Queue> MapQueue(TrackedDownload trackedDownload)
|
|||
}
|
||||
else
|
||||
{
|
||||
yield return MapQueueItem(trackedDownload, null);
|
||||
yield return MapQueueItem(trackedDownload, []);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue