aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Updates/InstallationManager.cs
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2020-06-04 03:18:55 +0900
committerGitHub <noreply@github.com>2020-06-04 03:18:55 +0900
commit7176a9a30a7c9c925e04529f3ba7feac022f9248 (patch)
treec08c200e8869843386c23dc70052ef617ca486c4 /Emby.Server.Implementations/Updates/InstallationManager.cs
parent6a7cb21b7e4223a78857772e56539f1e344600f5 (diff)
fix build issues
Co-authored-by: Cody Robibero <cody@robibe.ro>
Diffstat (limited to 'Emby.Server.Implementations/Updates/InstallationManager.cs')
-rw-r--r--Emby.Server.Implementations/Updates/InstallationManager.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs
index 01118789b..684fe5672 100644
--- a/Emby.Server.Implementations/Updates/InstallationManager.cs
+++ b/Emby.Server.Implementations/Updates/InstallationManager.cs
@@ -208,14 +208,15 @@ namespace Emby.Server.Implementations.Updates
}
foreach (var v in availableVersions.OrderByDescending(x => x.version))
-)
{
yield return new InstallationInfo
{
Changelog = v.changelog,
Guid = new Guid(package.guid),
Name = package.name,
- Version = new Version(v.version)
+ Version = new Version(v.version),
+ SourceUrl = v.sourceUrl,
+ Checksum = v.checksum
};
}
}