Added episode status to episode grid

This commit is contained in:
kay.one
2011-05-22 10:29:10 -07:00
parent a4f8947d90
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;
}