Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/e8d6d62fba5fd9b054fbb49103776b83171b5c0d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
15 additions and
3 deletions
@ -32,7 +32,13 @@ namespace NzbDrone.Core.Indexers.BroadcastheNet
break ;
}
var jsonResponse = new HttpResponse < JsonRpcResponse < BroadcastheNetTorrents > > ( indexerResponse . HttpResponse ) . Resource ;
if ( indexerResponse . Content = = "Query execution was interrupted" )
{
throw new IndexerException ( indexerResponse , "Indexer API returned an internal server error" ) ;
}
JsonRpcResponse < BroadcastheNetTorrents > jsonResponse = new HttpResponse < JsonRpcResponse < BroadcastheNetTorrents > > ( indexerResponse . HttpResponse ) . Resource ;
if ( jsonResponse . Error ! = null | | jsonResponse . Result = = null )
{
@ -306,13 +306,19 @@ namespace NzbDrone.Core.Indexers
}
catch ( UnsupportedFeedException ex )
{
_logger . WarnException ( "Indexer feed is not supported : " + ex . Message , ex ) ;
_logger . WarnException ( "Indexer feed is not supported ", ex ) ;
return new ValidationFailure ( string . Empty , "Indexer feed is not supported: " + ex . Message ) ;
}
catch ( IndexerException ex )
{
_logger . WarnException ( "Unable to connect to indexer" , ex ) ;
return new ValidationFailure ( string . Empty , "Unable to connect to indexer. " + ex . Message ) ;
}
catch ( Exception ex )
{
_logger . WarnException ( "Unable to connect to indexer: " + ex . Message , ex ) ;
_logger . WarnException ( "Unable to connect to indexer ", ex ) ;
return new ValidationFailure ( string . Empty , "Unable to connect to indexer, check the log for more details" ) ;
}