diff options
| author | Bond_009 <bond.009@outlook.com> | 2019-11-24 17:08:28 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2019-11-24 17:23:36 +0100 |
| commit | 6a6bfa6da9ac4b2c54d0eba88e3d30c4147a2379 (patch) | |
| tree | f0ea5dcf89166c38aed1386bf5c3fae6c66ca989 /MediaBrowser.Common/Updates/IInstallationManager.cs | |
| parent | 47ad21b6e396de836480211515de32f213cef590 (diff) | |
Fix possible nullref when updating packages
Diffstat (limited to 'MediaBrowser.Common/Updates/IInstallationManager.cs')
| -rw-r--r-- | MediaBrowser.Common/Updates/IInstallationManager.cs | 2 |
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. |
