Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/86c74b3ee08338fd42c67ad7a609d324ddf3db80
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
2 deletions
@ -180,7 +180,7 @@ namespace NzbDrone.Core.Configuration
public string Branch = > GetValue ( "Branch" , "master" ) . ToLowerInvariant ( ) ;
public string LogLevel = > GetValue ( "LogLevel" , "Info" ) ;
public string ConsoleLogLevel = > GetValue ( "ConsoleLogLevel" , null , persist : false ) ;
public string ConsoleLogLevel = > GetValue ( "ConsoleLogLevel" , string . Empty , persist : false ) ;
public string SslCertHash = > GetValue ( "SslCertHash" , "" ) ;
@ -2,6 +2,7 @@ using System.Collections.Generic;
using System.Linq ;
using NLog ;
using NLog.Config ;
using NzbDrone.Common.Extensions ;
using NzbDrone.Core.Configuration ;
using NzbDrone.Core.Configuration.Events ;
using NzbDrone.Core.Messaging.Events ;
@ -22,7 +23,7 @@ namespace NzbDrone.Core.Instrumentation
var minimumLogLevel = LogLevel . FromString ( _configFileProvider . LogLevel ) ;
LogLevel minimumConsoleLogLevel ;
if ( _configFileProvider . ConsoleLogLevel ! = null )
if ( _configFileProvider . ConsoleLogLevel . IsNotNullOrWhiteSpace ( ) )
minimumConsoleLogLevel = LogLevel . FromString ( _configFileProvider . ConsoleLogLevel ) ;
else if ( minimumLogLevel > LogLevel . Info )
minimumConsoleLogLevel = minimumLogLevel ;