Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/b02188acf433a22ec34a75ec4d27f157aaa37a2f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
6 deletions
@ -22,16 +22,18 @@ namespace NzbDrone.Core.HealthCheck.Checks
public override HealthCheck Check ( )
{
var enabledProviders = _proxyFactory . GetAvailableProviders ( ) ;
var enabledProxies = _proxyFactory . GetAvailableProviders ( )
. Where ( n = > ( ( IndexerProxyDefinition ) n . Definition ) . Enable )
. ToList ( ) ;
var badProxies = enabledProviders . Where ( p = > p . Test ( ) . IsValid = = false ) . ToList ( ) ;
var badProxies = enabledPro xie s. Where ( p = > p . Test ( ) . IsValid = = false ) . ToList ( ) ;
if ( enabledPro vider s. Empty ( ) | | badProxies . Count = = 0 )
if ( enabledPro xie s. Empty ( ) | | badProxies . Count = = 0 )
{
return new HealthCheck ( GetType ( ) ) ;
}
if ( badProxies . Count = = enabledPro vider s. Count )
if ( badProxies . Count = = enabledPro xie s. Count )
{
return new HealthCheck ( GetType ( ) ,
HealthCheckResult . Error ,
@ -31,8 +31,8 @@ namespace NzbDrone.Core.IndexerProxies
var failures = new List < ValidationFailure > ( ) ;
var request = PreRequest ( _cloudRequestBuilder . Create ( )
. Resource ( "/ping" )
. Build ( ) ) ;
. Resource ( "/ping" )
. Build ( ) ) ;
try
{