Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/b6ddc8756bb6dc3f7e8aac98f3a457074883daaa
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
2 deletions
@ -112,7 +112,7 @@ namespace NzbDrone.Core.Indexers.Newznab
{
Id = int . Parse ( xmlSubcat . Attribute ( "id" ) . Value ) ,
Name = xmlSubcat . Attribute ( "name" ) . Value ,
Description = xmlSubcat . Attribute ( "description" ) ! = null ? xml Category . Attribute ( "description" ) . Value : string . Empty
Description = xmlSubcat . Attribute ( "description" ) ! = null ? xml Subcat . Attribute ( "description" ) . Value : string . Empty
} ) ;
}
@ -27,7 +27,7 @@ namespace NzbDrone.Core.Indexers.Newznab
throw new ApiKeyException ( "Invalid API key" ) ;
}
if ( ! indexerResponse . Request . Url . ToString ( ) . Contains ( "apikey=" ) & & errorMessage = = "Missing parameter" )
if ( ! indexerResponse . Request . Url . ToString ( ) . Contains ( "apikey=" ) & & ( errorMessage = = "Missing parameter" | | errorMessage . Contains ( "apikey" ) ) )
{
throw new ApiKeyException ( "Indexer requires an API key" ) ;
}