mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 15:37:55 +02:00
Multi-episode air time only applies to episodes in the same season
This commit is contained in:
@@ -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();
|
||||
|
||||
|
Reference in New Issue
Block a user