Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/9b42dc70826796831e789a3b812577b11eee05be
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
7 deletions
@ -11,8 +11,7 @@ using NzbDrone.Core.Messaging.Events;
namespace NzbDrone.Core.Instrumentation
{
public class ReconfigureLogging : IHandleAsync < ConfigFileSavedEvent > ,
IHandle < ApplicationStartedEvent >
public class ReconfigureLogging : IHandleAsync < ConfigFileSavedEvent >
{
private readonly IConfigFileProvider _configFileProvider ;
@ -79,10 +78,5 @@ namespace NzbDrone.Core.Instrumentation
{
Reconfigure ( ) ;
}
public void Handle ( ApplicationStartedEvent message )
{
Reconfigure ( ) ;
}
}
}
@ -8,6 +8,7 @@ using NzbDrone.Common.Instrumentation;
using NzbDrone.Common.Processes ;
using NzbDrone.Common.Security ;
using NzbDrone.Core.Datastore ;
using NzbDrone.Core.Instrumentation ;
namespace NzbDrone.Host
{
@ -56,6 +57,8 @@ namespace NzbDrone.Host
private static void Start ( ApplicationModes applicationModes , StartupContext startupContext )
{
_container . Resolve < ReconfigureLogging > ( ) . Reconfigure ( ) ;
if ( ! IsInUtilityMode ( applicationModes ) )
{
if ( startupContext . Flags . Contains ( StartupContext . RESTART ) )