Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/924f6ca715144d1e20a90971660bdb4c6cf68aea
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
13 additions and
2 deletions
@ -3,6 +3,7 @@ const monitorOptions = [
{ key : 'future' , value : 'Future Episodes' } ,
{ key : 'missing' , value : 'Missing Episodes' } ,
{ key : 'existing' , value : 'Existing Episodes' } ,
{ key : 'pilot' , value : 'Pilot Episode' } ,
{ key : 'firstSeason' , value : 'Only First Season' } ,
{ key : 'latestSeason' , value : 'Only Latest Season' } ,
{ key : 'none' , value : 'None' }
@ -70,6 +70,13 @@ namespace NzbDrone.Core.Tv
break ;
case MonitorTypes . Pilot :
_logger . Debug ( "[{0}] Monitoring first episode episodes" , series . Title ) ;
ToggleEpisodesMonitoredState ( episodes ,
e = > e . SeasonNumber > 0 & & e . SeasonNumber = = firstSeason & & e . EpisodeNumber = = 1 ) ;
break ;
case MonitorTypes . FirstSeason :
_logger . Debug ( "[{0}] Monitoring first season episodes" , series . Title ) ;
ToggleEpisodesMonitoredState ( episodes , e = > e . SeasonNumber > 0 & & e . SeasonNumber = = firstSeason ) ;
@ -77,7 +84,6 @@ namespace NzbDrone.Core.Tv
break ;
case MonitorTypes . LatestSeason :
if ( episodes . Where ( e = > e . SeasonNumber = = lastSeason )
. All ( e = > e . AirDateUtc . HasValue & &
e . AirDateUtc . Value . Before ( DateTime . UtcNow ) & &
@ -114,7 +120,10 @@ namespace NzbDrone.Core.Tv
// - Not specials
// - The latest season
// - Not only supposed to monitor the first season
if ( seasonNumber > 0 & & seasonNumber = = lastSeason & & monitoringOptions . Monitor ! = MonitorTypes . FirstSeason )
if ( seasonNumber > 0 & &
seasonNumber = = lastSeason & &
monitoringOptions . Monitor ! = MonitorTypes . FirstSeason & &
monitoringOptions . Monitor ! = MonitorTypes . Pilot )
{
season . Monitored = true ;
}
@ -18,6 +18,7 @@ namespace NzbDrone.Core.Tv
Existing ,
FirstSeason ,
LatestSeason ,
Pilot ,
None
}
}