Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/3eeee7335e6c0bbe2eb76faf8d7c58af24f18476
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
4 additions and
9 deletions
@ -17,8 +17,6 @@ namespace NzbDrone.Common.Composition
protected ContainerBuilderBase ( IStartupContext args , params string [ ] assemblies )
{
_loadedTypes = new List < Type > ( ) ;
foreach ( var assembly in assemblies )
@ -55,8 +53,6 @@ namespace NzbDrone.Common.Composition
{
var implementations = Container . GetImplementations ( contractType ) . Where ( c = > ! c . IsGenericTypeDefinition ) . ToList ( ) ;
if ( implementations . Count = = 0 )
{
return ;
@ -139,7 +139,6 @@ namespace NzbDrone.Common
}
}
public ServiceControllerStatus GetStatus ( string serviceName )
{
return GetService ( serviceName ) . Status ;
@ -40,7 +40,10 @@ namespace NzbDrone.Host
startCallback ( _container ) ;
}
SpinToExit ( appMode ) ;
else
{
SpinToExit ( appMode ) ;
}
}
catch ( TerminateApplicationException e )
{
@ -23,7 +23,6 @@ namespace NzbDrone.SysTray
_browserService = browserService ;
}
public void Start ( )
{
Application . ThreadException + = OnThreadException ;
@ -34,7 +34,5 @@ namespace NzbDrone
MessageBox . Show ( text : message , buttons : MessageBoxButtons . OK , icon : MessageBoxIcon . Error , caption : "Epic Fail!" ) ;
}
}
}
}