Browse Source

fix build issues

Co-authored-by: Cody Robibero <cody@robibe.ro>
dkanada 5 năm trước cách đây
mục cha
commit
7176a9a30a

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