Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/edfd52790109b713cafafc01ed713b895bb74fc9 You should set ROOT_URL correctly, otherwise the web may not work correctly.

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

pull/30/head
Mark McDowall 12 years ago
parent 33fa468f91
commit edfd527901

@ -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();

Loading…
Cancel
Save