Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/f1248d12c66674d289f81c7f1157e5af4d51475f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
7 additions and
11 deletions
@ -1,16 +1,12 @@
using System ;
using System.Reflection ;
using NLog ;
using Ninject ;
using NzbDrone.Providers ;
namespace NzbDrone
{
public static class AppMain
{
private static readonly Logger Logger = LogManager . GetLogger ( "Host.Main" ) ;
public static void Main ( string [ ] args )
{
try
@ -21,8 +17,7 @@ namespace NzbDrone
}
catch ( Exception e )
{
Console . WriteLine ( e . ToString ( ) ) ;
Logger . Fatal ( e . ToString ( ) ) ;
MonitoringProvider . AppDomainException ( e ) ;
}
}
@ -34,7 +34,7 @@ namespace NzbDrone.Providers
public void Start ( )
{
AppDomain . CurrentDomain . UnhandledException + = ( ( s , e ) = > AppDomainException ( e )) ;
AppDomain . CurrentDomain . UnhandledException + = ( ( s , e ) = > AppDomainException ( e .ExceptionObject as Exception )) ;
AppDomain . CurrentDomain . ProcessExit + = ProgramExited ;
AppDomain . CurrentDomain . DomainUnload + = ProgramExited ;
@ -43,7 +43,7 @@ namespace NzbDrone.Providers
prioCheckTimer . Elapsed + = EnsurePriority ;
prioCheckTimer . Enabled = true ;
_pingTimer = new Timer ( 60000 ) { AutoReset = true } ;
_pingTimer = new Timer ( 60000 ) { AutoReset = true } ;
_pingTimer . Elapsed + = ( PingServer ) ;
_pingTimer . Start ( ) ;
}
@ -102,10 +102,9 @@ namespace NzbDrone.Providers
}
p rivate static void AppDomainException ( object excepion )
p ublic static void AppDomainException ( Exception excepion )
{
Console . WriteLine ( "EPIC FAIL: {0}" , excepion ) ;
Logger . Fatal ( "EPIC FAIL: {0}" , excepion ) ;
#if DEBUG
# else
@ -116,6 +115,8 @@ namespace NzbDrone.Providers
CurrentException = excepion as Exception
} . Submit ( ) ;
# endif
Logger . Fatal ( "EPIC FAIL: {0}" , excepion ) ;
}
}
}