aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Updates/IInstallationManager.cs
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2019-12-05 15:23:48 +0900
committerGitHub <noreply@github.com>2019-12-05 15:23:48 +0900
commita7ef1aa7ecf8554e43fc6f2c076bfd452c5c0483 (patch)
tree4ec0e0b48da0cc95505feba6d8e8ba7e2d5bc21c /MediaBrowser.Common/Updates/IInstallationManager.cs
parente44a7ae3f60f95a6233690d77df326038d8f50fc (diff)
parent6a6bfa6da9ac4b2c54d0eba88e3d30c4147a2379 (diff)
Merge pull request #2050 from Bond-009/nullref
Fix possible nullref when updating packages
Diffstat (limited to 'MediaBrowser.Common/Updates/IInstallationManager.cs')
-rw-r--r--MediaBrowser.Common/Updates/IInstallationManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Common/Updates/IInstallationManager.cs b/MediaBrowser.Common/Updates/IInstallationManager.cs
index 524d8f3c6..e49812f15 100644
--- a/MediaBrowser.Common/Updates/IInstallationManager.cs
+++ b/MediaBrowser.Common/Updates/IInstallationManager.cs
@@ -92,7 +92,7 @@ namespace MediaBrowser.Common.Updates
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>The available plugin updates.</returns>
- Task<IEnumerable<PackageVersionInfo>> GetAvailablePluginUpdates(CancellationToken cancellationToken = default);
+ IAsyncEnumerable<PackageVersionInfo> GetAvailablePluginUpdates(CancellationToken cancellationToken = default);
/// <summary>
/// Installs the package.