Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/fe164c1def52067a20a207082364f68f6933acfa
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
14 additions and
4 deletions
@ -1,6 +1,4 @@
using System.Linq ;
using System.Xml.Linq ;
using NzbDrone.Common.Extensions ;
using System.Linq ;
using NzbDrone.Core.Indexers.Exceptions ;
namespace NzbDrone.Core.Indexers
@ -20,6 +18,8 @@ namespace NzbDrone.Core.Indexers
protected override bool PreProcess ( IndexerResponse indexerResponse )
{
base . PreProcess ( indexerResponse ) ;
var document = LoadXmlDocument ( indexerResponse ) ;
var items = GetItems ( document ) . ToList ( ) ;
@ -28,7 +28,7 @@ namespace NzbDrone.Core.Indexers
throw new IndexerException ( indexerResponse , "No results were found" ) ;
}
return base. PreProcess ( indexerResponse ) ;
return true ;
}
}
}
@ -56,6 +56,11 @@ namespace NzbDrone.Core.Indexers.Newznab
protected override bool PreProcess ( IndexerResponse indexerResponse )
{
if ( indexerResponse . HttpResponse . HasHttpError )
{
base . PreProcess ( indexerResponse ) ;
}
var xdoc = LoadXmlDocument ( indexerResponse ) ;
CheckError ( xdoc , indexerResponse ) ;
@ -21,6 +21,11 @@ namespace NzbDrone.Core.Indexers.Torznab
protected override bool PreProcess ( IndexerResponse indexerResponse )
{
if ( indexerResponse . HttpResponse . HasHttpError )
{
base . PreProcess ( indexerResponse ) ;
}
var xdoc = LoadXmlDocument ( indexerResponse ) ;
var error = xdoc . Descendants ( "error" ) . FirstOrDefault ( ) ;