Episodes for queue item should not be null

This commit is contained in:
Mark McDowall 2025-11-23 16:19:00 -08:00
parent 69878deff7
commit b4af5c30b7
No known key found for this signature in database

View file

@ -51,7 +51,7 @@ private IEnumerable<Queue> MapQueue(TrackedDownload trackedDownload)
}
else
{
yield return MapQueueItem(trackedDownload, null);
yield return MapQueueItem(trackedDownload, []);
}
}