mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
New: Episodes that air today will not be shown in the UI as missing.
This commit is contained in:
parent
3a3ba146d6
commit
1c22ec91d6
4 changed files with 11 additions and 2 deletions
|
@ -56,6 +56,9 @@ namespace NzbDrone.Core.Repository
|
|||
if (GrabDate != null && GrabDate.Value.AddDays(1) >= DateTime.Now)
|
||||
return EpisodeStatusType.Downloading;
|
||||
|
||||
if (AirDate != null && AirDate.Value.Date == DateTime.Today)
|
||||
return EpisodeStatusType.AirsToday;
|
||||
|
||||
if (AirDate != null && AirDate.Value.Date < DateTime.Now)
|
||||
return EpisodeStatusType.Missing;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue