Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/aee3f2d12b4db04c19513afec655b5ebce0c16dc
You should set ROOT_URL correctly, otherwise the web may not work correctly.
10 changed files with
10 additions and
0 deletions
@ -64,6 +64,7 @@ namespace NzbDrone.Core.Applications.Lidarr
failures . AddIfNotNull ( new ValidationFailure ( "ProwlarrUrl" , "Prowlarr URL is invalid, Lidarr cannot connect to Prowlarr" ) ) ;
break ;
case HttpStatusCode . SeeOther :
case HttpStatusCode . TemporaryRedirect :
_logger . Warn ( ex , "Lidarr returned redirect and is invalid" ) ;
failures . AddIfNotNull ( new ValidationFailure ( "BaseUrl" , "Lidarr URL is invalid, Prowlarr cannot connect to Lidarr - are you missing a URL base?" ) ) ;
break ;
@ -166,6 +166,7 @@ namespace NzbDrone.Core.Applications.Lidarr
_logger . Error ( ex , "Invalid Request" ) ;
break ;
case HttpStatusCode . SeeOther :
case HttpStatusCode . TemporaryRedirect :
_logger . Warn ( ex , "App returned redirect and is invalid. Check App URL" ) ;
break ;
case HttpStatusCode . NotFound :
@ -64,6 +64,7 @@ namespace NzbDrone.Core.Applications.Radarr
failures . AddIfNotNull ( new ValidationFailure ( "ProwlarrUrl" , "Prowlarr URL is invalid, Radarr cannot connect to Prowlarr" ) ) ;
break ;
case HttpStatusCode . SeeOther :
case HttpStatusCode . TemporaryRedirect :
_logger . Warn ( ex , "Radarr returned redirect and is invalid" ) ;
failures . AddIfNotNull ( new ValidationFailure ( "BaseUrl" , "Radarr URL is invalid, Prowlarr cannot connect to Radarr - are you missing a URL base?" ) ) ;
break ;
@ -179,6 +179,7 @@ namespace NzbDrone.Core.Applications.Radarr
_logger . Error ( ex , "Invalid Request" ) ;
break ;
case HttpStatusCode . SeeOther :
case HttpStatusCode . TemporaryRedirect :
_logger . Warn ( ex , "App returned redirect and is invalid. Check App URL" ) ;
break ;
case HttpStatusCode . NotFound :
@ -64,6 +64,7 @@ namespace NzbDrone.Core.Applications.Readarr
failures . AddIfNotNull ( new ValidationFailure ( "ProwlarrUrl" , "Prowlarr URL is invalid, Readarr cannot connect to Prowlarr" ) ) ;
break ;
case HttpStatusCode . SeeOther :
case HttpStatusCode . TemporaryRedirect :
_logger . Warn ( ex , "Readarr returned redirect and is invalid" ) ;
failures . AddIfNotNull ( new ValidationFailure ( "BaseUrl" , "Readarr URL is invalid, Prowlarr cannot connect to Readarr - are you missing a URL base?" ) ) ;
break ;
@ -153,6 +153,7 @@ namespace NzbDrone.Core.Applications.Readarr
_logger . Error ( ex , "Invalid Request" ) ;
break ;
case HttpStatusCode . SeeOther :
case HttpStatusCode . TemporaryRedirect :
_logger . Warn ( ex , "App returned redirect and is invalid. Check App URL" ) ;
break ;
case HttpStatusCode . NotFound :
@ -64,6 +64,7 @@ namespace NzbDrone.Core.Applications.Sonarr
failures . AddIfNotNull ( new ValidationFailure ( "ProwlarrUrl" , "Prowlarr URL is invalid, Sonarr cannot connect to Prowlarr" ) ) ;
break ;
case HttpStatusCode . SeeOther :
case HttpStatusCode . TemporaryRedirect :
_logger . Warn ( ex , "Sonarr returned redirect and is invalid" ) ;
failures . AddIfNotNull ( new ValidationFailure ( "BaseUrl" , "Sonarr URL is invalid, Prowlarr cannot connect to Sonarr - are you missing a URL base?" ) ) ;
break ;
@ -166,6 +166,7 @@ namespace NzbDrone.Core.Applications.Sonarr
_logger . Error ( ex , "Invalid Request" ) ;
break ;
case HttpStatusCode . SeeOther :
case HttpStatusCode . TemporaryRedirect :
_logger . Warn ( ex , "App returned redirect and is invalid. Check App URL" ) ;
break ;
case HttpStatusCode . NotFound :
@ -64,6 +64,7 @@ namespace NzbDrone.Core.Applications.Whisparr
failures . AddIfNotNull ( new ValidationFailure ( "ProwlarrUrl" , "Prowlarr URL is invalid, Whisparr cannot connect to Prowlarr" ) ) ;
break ;
case HttpStatusCode . SeeOther :
case HttpStatusCode . TemporaryRedirect :
_logger . Warn ( ex , "Whisparr returned redirect and is invalid" ) ;
failures . AddIfNotNull ( new ValidationFailure ( "BaseUrl" , "Whisparr URL is invalid, Prowlarr cannot connect to Whisparr - are you missing a URL base?" ) ) ;
break ;
@ -151,6 +151,7 @@ namespace NzbDrone.Core.Applications.Whisparr
_logger . Error ( ex , "Invalid Request" ) ;
break ;
case HttpStatusCode . SeeOther :
case HttpStatusCode . TemporaryRedirect :
_logger . Warn ( ex , "App returned redirect and is invalid. Check App URL" ) ;
break ;
case HttpStatusCode . NotFound :