1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-21 23:33:00 +00:00

Fixed: Fetching ICS calendar with missing series

This commit is contained in:
Bogdan 2024-12-09 14:35:33 +02:00 committed by Mark McDowall
parent e70aef9690
commit 024462c52d

View file

@ -54,6 +54,11 @@ namespace Sonarr.Api.V3.Calendar
{
var series = allSeries.SingleOrDefault(s => s.Id == episode.SeriesId);
if (series == null)
{
continue;
}
if (premieresOnly && (episode.SeasonNumber == 0 || episode.EpisodeNumber != 1))
{
continue;