diff options
| author | Vasily <JustAMan@users.noreply.github.com> | 2019-02-04 00:09:52 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-04 00:09:52 +0300 |
| commit | 3ac75313854c6109b71d542e492594e434cb39ba (patch) | |
| tree | a2f63bd40ba010fe060b21ce3d9a3e2637f21c88 | |
| parent | a50fb922c5f993c96fb0e716f11d6286ad9811da (diff) | |
| parent | cb1ff695852348e217b9fb065d94769bb9104953 (diff) | |
Merge pull request #802 from jellyfin/fix-build
Fix build error
| -rw-r--r-- | Emby.Server.Implementations/Updates/InstallationManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs index 637c4d4f3..dc7f57f27 100644 --- a/Emby.Server.Implementations/Updates/InstallationManager.cs +++ b/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) |
