diff options
| -rw-r--r-- | Emby.Server.Implementations/Updates/InstallationManager.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs index 01118789bc..684fe56724 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 }; } } |
