Calendar will now only show monitored episodes

This commit is contained in:
Mark McDowall 2013-07-15 15:52:00 -07:00
commit 440a128f28
2 changed files with 8 additions and 2 deletions

View file

@ -119,8 +119,12 @@ namespace NzbDrone.Core.Tv
public List<Episode> EpisodesBetweenDates(DateTime startDate, DateTime endDate)
{
return Query.Where<Episode>(e => e.AirDate >= startDate)
.AndWhere(e => e.AirDate <= endDate).ToList();
return Query.Join<Episode, Series>(JoinType.Inner, e => e.Series, (e, s) => e.SeriesId == s.Id)
.Where<Episode>(e => e.AirDate >= startDate)
.AndWhere(e => e.AirDate <= endDate)
.AndWhere(e => e.Monitored)
.AndWhere(e => e.Series.Monitored)
.ToList();
}
public void SetMonitoredFlat(Episode episode, bool monitored)