Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/1c22ec91d616cbd9f0a8e51fc7026319c9183db6
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
11 additions and
2 deletions
@ -13,10 +13,16 @@
Ignored ,
/// <summary>
/// Episode has aired but no episode
/// files hav e avilable
/// Episode has aired , but no episode
/// files ar e 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 ;
Width:
|
Height:
|
Size: 3.3 KiB
Width:
|
Height:
|
Size: 3.3 KiB
Width:
|
Height:
|
Size: 5.9 KiB