Series/Details specials grid will be generated like all others.

Added images for Episode Status, Ignored status removed
Updated SceneNameMappings.csv
This commit is contained in:
Mark McDowall 2011-08-21 23:25:32 -07:00
commit d120a61ccb
9 changed files with 26 additions and 82 deletions

View file

@ -37,15 +37,12 @@ namespace NzbDrone.Core.Repository
{
get
{
if (EpisodeFileId != 0) return EpisodeStatusType.Ready;
if (GrabDate != null && GrabDate.Value.AddDays(1) >= DateTime.Now)
{
return EpisodeStatusType.Downloading;
}
if (Ignored) return EpisodeStatusType.Ignored;
if (AirDate != null && AirDate.Value.Date < DateTime.Now)
{