mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 20:44:00 +02:00
New: Episodes that air today will not be shown in the UI as missing.
This commit is contained in:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user