diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-04-11 10:00:39 -0400 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-04-11 10:00:39 -0400 |
| commit | 1e1295bebfb37eb18d3704a903dd3de1d3e602f6 (patch) | |
| tree | 0c238786e6d833ecc29cf68f06baa6cb5f92cbab /MediaBrowser.Common/Updates/IInstallationManager.cs | |
| parent | f91f2ef328a9d7693956ab33bf5c70be2f1213df (diff) | |
| parent | 299541f1b26136ef89741f28c7949cda4e5e485f (diff) | |
Merge remote-tracking branch 'upstream/master' into register-services-correctly
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 8ea492261..93f330e5b 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> - IAsyncEnumerable<PackageVersionInfo> GetAvailablePluginUpdates(CancellationToken cancellationToken = default); + Task<IEnumerable<PackageVersionInfo>> GetAvailablePluginUpdates(CancellationToken cancellationToken = default); /// <summary> /// Installs the package. |
