fix build issues

Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
dkanada 2020-06-04 03:18:55 +09:00 committed by GitHub
parent 6a7cb21b7e
commit 7176a9a30a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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