瀏覽代碼

fix build issues

Co-authored-by: Cody Robibero <cody@robibe.ro>
dkanada 5 年之前
父節點
當前提交
7176a9a30a
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      Emby.Server.Implementations/Updates/InstallationManager.cs

+ 3 - 2
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
                 };
             }
         }