Added episode status to episode grid

This commit is contained in:
kay.one 2011-05-22 10:29:10 -07:00
commit 7b56711a4f
5 changed files with 26 additions and 8 deletions

View file

@ -49,7 +49,7 @@ namespace NzbDrone.Core.Repository
if (EpisodeFileId != 0) return EpisodeStatusType.Ready;
if (DateTime.Now.Date >= AirDate.Date)
if (AirDate.Date.Year > 1900 && DateTime.Now.Date >= AirDate.Date)
{
return EpisodeStatusType.Missing;
}