From 12a1865d4d7c82d8cfe40fdc51bd234d2f097cda Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 21 May 2016 23:31:39 -0700 Subject: [PATCH] Service now depends on HTTP Service (http) --- src/NzbDrone.Common/ServiceProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Common/ServiceProvider.cs b/src/NzbDrone.Common/ServiceProvider.cs index ffd59f08a..b494381c3 100644 --- a/src/NzbDrone.Common/ServiceProvider.cs +++ b/src/NzbDrone.Common/ServiceProvider.cs @@ -80,7 +80,7 @@ namespace NzbDrone.Common serviceInstaller.ServiceName = serviceName; serviceInstaller.Description = "NzbDrone Application Server"; serviceInstaller.StartType = ServiceStartMode.Automatic; - serviceInstaller.ServicesDependedOn = new[] { "EventLog", "Tcpip" }; + serviceInstaller.ServicesDependedOn = new[] { "EventLog", "Tcpip", "http" }; serviceInstaller.Parent = installer;