Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/52fc5ae1eae2f3b85a548107359e8208a0b4f8a5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
7 additions and
1 deletions
@ -25,6 +25,9 @@ using NzbDrone.Common.Serializer;
using NzbDrone.Core.Configuration ;
using NzbDrone.Core.Datastore ;
using NzbDrone.Core.Instrumentation ;
using NzbDrone.Core.Lifecycle ;
using NzbDrone.Core.Messaging.Events ;
using NzbDrone.Host ;
using NzbDrone.Host.AccessControl ;
using NzbDrone.Http.Authentication ;
using NzbDrone.SignalR ;
@ -215,7 +218,8 @@ namespace NzbDrone.Host
IConfigFileProvider configFileProvider ,
IRuntimeInfo runtimeInfo ,
IFirewallAdapter firewallAdapter ,
LidarrErrorPipeline errorHandler )
LidarrErrorPipeline errorHandler ,
IEventAggregator eventAggregator )
{
initializeLogger . Initialize ( ) ;
appFolderFactory . Register ( ) ;
@ -236,6 +240,8 @@ namespace NzbDrone.Host
Console . CancelKeyPress + = ( sender , eventArgs ) = > NLog . LogManager . Configuration = null ;
}
eventAggregator . PublishEvent ( new ApplicationStartingEvent ( ) ) ;
if ( OsInfo . IsWindows & & runtimeInfo . IsAdmin )
{
firewallAdapter . MakeAccessible ( ) ;