mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
Added episode status to episode grid
This commit is contained in:
parent
a4f8947d90
commit
7b56711a4f
5 changed files with 26 additions and 8 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue