Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/b02b9f026f7994bc311643de2d96982d9c2df4d9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
20 additions and
2 deletions
@ -50,12 +50,30 @@ namespace NzbDrone.Core.IndexerSearch
if ( season . Count ( ) > 1 )
{
decisions = _nzbSearchService . SeasonSearch ( series . Key , season . Key , true ) ;
try
{
decisions = _nzbSearchService . SeasonSearch ( series . Key , season . Key , true ) ;
}
catch ( Exception ex )
{
var message = String . Format ( "Unable to search for missing episodes in season {0} of [{1}]" , season . Key , series . Key ) ;
_logger . ErrorException ( message , ex ) ;
continue ;
}
}
else
{
decisions = _nzbSearchService . EpisodeSearch ( season . First ( ) ) ;
try
{
decisions = _nzbSearchService . EpisodeSearch ( season . First ( ) ) ;
}
catch ( Exception ex )
{
var message = String . Format ( "Unable to search for missing episode: [{0}]" , season . First ( ) ) ;
_logger . ErrorException ( message , ex ) ;
continue ;
}
}
var processed = _processDownloadDecisions . ProcessDecisions ( decisions ) ;