Removed reference to Sonarr and replaced them with Lidarr

This commit is contained in:
TCBWZA
2017-04-08 17:48:31 +02:00
parent 3ebbaf4eb7
commit 0d4e049225
6 changed files with 18 additions and 16 deletions
+4 -4
View File
@@ -66,9 +66,9 @@ namespace NzbDrone.Update
}
var startupContext = new UpdateStartupContext
{
ProcessId = ParseProcessId(args[0])
};
{
ProcessId = ParseProcessId(args[0])
};
if (OsInfo.IsNotWindows)
{
@@ -104,7 +104,7 @@ namespace NzbDrone.Update
throw new ArgumentOutOfRangeException(nameof(arg), "Invalid process ID");
}
Logger.Debug("NzbDrone process ID: {0}", id);
Logger.Debug("Lidarr process ID: {0}", id);
return id;
}
@@ -17,7 +17,8 @@ namespace NzbDrone.Update
{
var assemblies = new List<string>
{
"NzbDrone.Update"
"Lidarr.Update",
"NzbDrone.Common"
};
return new UpdateContainerBuilder(startupContext, assemblies).Container;