Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/71638ec77e7fcd0a36949fa380538ccc182c586c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
6 changed files with
7 additions and
7 deletions
@ -9,7 +9,7 @@ namespace NzbDrone.Common.Cloud
public class DroneServicesHttpRequestBuilder : HttpRequestBuilder , IDroneServicesRequestBuilder
{
private const string ROOT_URL = "http s ://services.sonarr.tv/v1/";
private const string ROOT_URL = "http ://services.sonarr.tv/v1/";
public DroneServicesHttpRequestBuilder ( )
: base ( ROOT_URL )
@ -175,7 +175,7 @@
<Compile Include= "RateGate.cs" />
<Compile Include= "Reflection\ReflectionExtensions.cs" />
<Compile Include= "Extensions\ResourceExtensions.cs" />
<Compile Include= "Security\ IgnoreCertError Policy.cs" />
<Compile Include= "Security\ X509CertificateValidation Policy.cs" />
<Compile Include= "Serializer\IntConverter.cs" />
<Compile Include= "Serializer\Json.cs" />
<Compile Include= "ServiceFactory.cs" />
@ -6,9 +6,9 @@ using NzbDrone.Common.Instrumentation;
namespace NzbDrone.Common.Security
{
public static class IgnoreCertError Policy
public static class X509CertificateValidation Policy
{
private static readonly Logger Logger = NzbDroneLogger . GetLogger ( "IgnoreCertErrorPolicy" ) ;
private static readonly Logger Logger = NzbDroneLogger . GetLogger ( ) ;
public static void Register ( )
{
@ -23,7 +23,7 @@ namespace NzbDrone.Host
try
{
GlobalExceptionHandlers . Register ( ) ;
IgnoreCertError Policy. Register ( ) ;
X509CertificateValidation Policy. Register ( ) ;
Logger . Info ( "Starting NzbDrone - {0} - Version {1}" , Assembly . GetCallingAssembly ( ) . Location , Assembly . GetExecutingAssembly ( ) . GetName ( ) . Version ) ;
@ -34,7 +34,7 @@ namespace NzbDrone.Host.Owin
public void StartServer ( )
{
IgnoreCertError Policy. Register ( ) ;
X509CertificateValidation Policy. Register ( ) ;
if ( OsInfo . IsWindows )
{
@ -36,7 +36,7 @@ namespace NzbDrone.Update
Console . WriteLine ( "Starting NzbDrone Update Client" ) ;
IgnoreCertError Policy. Register ( ) ;
X509CertificateValidation Policy. Register ( ) ;
GlobalExceptionHandlers . Register ( ) ;