mirror of https://github.com/lidarr/Lidarr
New: Episodes that air today will not be shown in the UI as missing.
This commit is contained in:
parent
3a3ba146d6
commit
1c22ec91d6
|
@ -13,10 +13,16 @@
|
|||
Ignored,
|
||||
|
||||
/// <summary>
|
||||
/// Episode has aired but no episode
|
||||
/// files have avilable
|
||||
/// Episode has aired, but no episode
|
||||
/// files are avilable
|
||||
/// </summary>
|
||||
Missing,
|
||||
|
||||
/// <summary>
|
||||
/// Episode airs today, but no episode
|
||||
/// files are avilable
|
||||
/// </summary>
|
||||
AirsToday,
|
||||
|
||||
/// <summary>
|
||||
/// Episode is being downloaded
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 3.3 KiB |
Binary file not shown.
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 5.9 KiB |
Loading…
Reference in New Issue