1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-03-05 13:20:20 -05:00

Episodes for queue item should not be null

This commit is contained in:
Mark McDowall
2025-11-23 16:19:00 -08:00
parent 7284898c7d
commit d2107e92f3

View File

@@ -51,7 +51,7 @@ namespace NzbDrone.Core.Queue
}
else
{
yield return MapQueueItem(trackedDownload, null);
yield return MapQueueItem(trackedDownload, []);
}
}