Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/2bc34e2d571732d0351db822ac13b2db70c980f2 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from NzbDrone/service-dependencies

Service dependencies
pull/42/head
Mark McDowall 12 years ago
commit 2bc34e2d57

@ -71,6 +71,7 @@ namespace NzbDrone.Common
serviceInstaller.ServiceName = serviceName;
serviceInstaller.Description = "NzbDrone Application Server";
serviceInstaller.StartType = ServiceStartMode.Automatic;
serviceInstaller.ServicesDependedOn = new[] { "EventLog", "Tcpip" };
serviceInstaller.Parent = installer;

@ -26,7 +26,7 @@ namespace ServiceInstall
{
if (!File.Exists(NzbDroneExe))
{
Console.WriteLine("Unable to find NzbDrone.exe in the current directory.");
Console.WriteLine("Unable to find NzbDrone.Console.exe in the current directory.");
return;
}

Loading…
Cancel
Save