Had the episodes going into the episode count tuple in the wrong order than, they were being retrieved. Oh noes.

pull/6/head
Mark McDowall 13 years ago
parent 90d9e7d41e
commit a4e96ba314

@ -201,7 +201,7 @@ namespace NzbDrone.Core.Providers
var episodeTotal = series.Episodes.Where(e => monitoredSeasons.Contains(e.SeasonId) && e.AirDate <= DateTime.Today && e.AirDate > new DateTime(1899, 12, 31));
var episodes = episodeTotal.Where(e => e.EpisodeFileId > 0);
return new Tuple<int, int>(episodeTotal.Count(), episodes.Count());
return new Tuple<int, int>(episodes.Count(), episodeTotal.Count());
}
private List<string> GetMediaFileList(string path)

Loading…
Cancel
Save