Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/d8957a85ef8d0ac1805762120367945b287de405
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
2 deletions
@ -6,7 +6,6 @@ using DeskMetrics;
using Ninject ;
using NLog ;
using NzbDrone.Common ;
using NzbDrone.Core.Datastore ;
using NzbDrone.Core.Instrumentation ;
using NzbDrone.Core.Jobs ;
using NzbDrone.Core.Providers ;
@ -14,6 +13,11 @@ using NzbDrone.Core.Providers.Core;
using NzbDrone.Core.Providers.ExternalNotification ;
using NzbDrone.Core.Providers.Indexer ;
using PetaPoco ;
using SignalR ;
using SignalR.Hosting.AspNet ;
using SignalR.Infrastructure ;
using SignalR.Ninject ;
using Connection = NzbDrone . Core . Datastore . Connection ;
namespace NzbDrone.Core
{
@ -31,6 +35,9 @@ namespace NzbDrone.Core
logger . Debug ( "Initializing Kernel:" ) ;
Kernel = new StandardKernel ( ) ;
var resolver = new NinjectDependencyResolver ( Kernel ) ;
AspNetHost . SetResolver ( resolver ) ;
InitDatabase ( ) ;
InitReporting ( ) ;
@ -22,7 +22,7 @@ namespace NzbDrone.Core.Providers
GetClients ( ) . updatedStatus ( episodeId , episodeStatus . ToString ( ) ) ;
}
private static dynamic GetClients ( )
private dynamic GetClients ( )
{
var connectionManager = AspNetHost . DependencyResolver . Resolve < IConnectionManager > ( ) ;
return connectionManager . GetClients < SignalRProvider > ( ) ;