Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/33f44e79323e6418c570e013f081dd0d3ddc7229?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
3 deletions
@ -94,7 +94,7 @@ namespace NzbDrone.Common.Instrumentation
fileTarget . ArchiveNumbering = ArchiveNumberingMode . Rolling ;
fileTarget . ArchiveNumbering = ArchiveNumberingMode . Rolling ;
fileTarget . Layout = FILE_LOG_LAYOUT ;
fileTarget . Layout = FILE_LOG_LAYOUT ;
var loggingRule = new LoggingRule ( "*" , LogLevel . Info , fileTarget ) ;
var loggingRule = new LoggingRule ( "*" , LogLevel . Trace , fileTarget ) ;
LogManager . Configuration . AddTarget ( "appfile" , fileTarget ) ;
LogManager . Configuration . AddTarget ( "appfile" , fileTarget ) ;
LogManager . Configuration . LoggingRules . Add ( loggingRule ) ;
LogManager . Configuration . LoggingRules . Add ( loggingRule ) ;
@ -10,7 +10,8 @@ using NzbDrone.Core.Messaging.Events;
namespace NzbDrone.Core.Instrumentation
namespace NzbDrone.Core.Instrumentation
{
{
public class ReconfigureLogging : IHandleAsync < ConfigFileSavedEvent > , IHandleAsync < ApplicationStartedEvent >
public class ReconfigureLogging : IHandleAsync < ConfigFileSavedEvent > ,
IHandle < ApplicationStartedEvent >
{
{
private readonly IConfigFileProvider _configFileProvider ;
private readonly IConfigFileProvider _configFileProvider ;
@ -84,7 +85,7 @@ namespace NzbDrone.Core.Instrumentation
Reconfigure ( ) ;
Reconfigure ( ) ;
}
}
public void Handle Async ( ApplicationStartedEvent message )
public void Handle ( ApplicationStartedEvent message )
{
{
Reconfigure ( ) ;
Reconfigure ( ) ;
}
}