Multi-episode air time only applies to episodes in the same season

This commit is contained in:
Mark McDowall 2013-09-10 21:23:30 -07:00
parent 33fa468f91
commit edfd527901
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ namespace NzbDrone.Core.Tv
{
var groups =
allEpisodes.Where(c => c.AirDateUtc.HasValue)
.GroupBy(e => new { e.SeriesId, e.AirDate })
.GroupBy(e => new { e.SeasonNumber, e.AirDate })
.Where(g => g.Count() > 1)
.ToList();