瀏覽代碼

Merge pull request #802 from jellyfin/fix-build

Fix build error
Vasily 6 年之前
父節點
當前提交
3ac7531385
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Emby.Server.Implementations/Updates/InstallationManager.cs

+ 1 - 1
Emby.Server.Implementations/Updates/InstallationManager.cs

@@ -164,7 +164,7 @@ namespace Emby.Server.Implementations.Updates
         /// Gets all available packages.
         /// </summary>
         /// <returns>Task{List{PackageInfo}}.</returns>
-        public Task<List<PackageInfo>> GetAvailablePackages(CancellationToken cancellationToken,
+        public async Task<List<PackageInfo>> GetAvailablePackages(CancellationToken cancellationToken,
             bool withRegistration = true,
             string packageType = null,
             Version applicationVersion = null)