diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-01-02 10:13:57 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-02 10:13:57 +0900 |
| commit | fb61a1f882a30e604793cc125fc5f3da5276547d (patch) | |
| tree | 01be2fe9b9bba2be167ea5678b1cdd9df6b00b82 /Emby.Server.Implementations/Updates/InstallationManager.cs | |
| parent | d3bce6e3805c34e5a1ca301ab234459a02cc6445 (diff) | |
| parent | 5c9e849b85f92f542cd23022b9bbcda209111d09 (diff) | |
Merge pull request #2150 from Bond-009/releaseerror
Enable TreatWarningsAsErrors for some projects
Diffstat (limited to 'Emby.Server.Implementations/Updates/InstallationManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Updates/InstallationManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs index 2705e0628..c897036eb 100644 --- a/Emby.Server.Implementations/Updates/InstallationManager.cs +++ b/Emby.Server.Implementations/Updates/InstallationManager.cs @@ -1,10 +1,10 @@ using System; using System.Collections.Concurrent; using System.Collections.Generic; -using System.Globalization; using System.IO; using System.Linq; using System.Net.Http; +using System.Runtime.CompilerServices; using System.Security.Cryptography; using System.Threading; using System.Threading.Tasks; @@ -189,7 +189,7 @@ namespace Emby.Server.Implementations.Updates } /// <inheritdoc /> - public async IAsyncEnumerable<PackageVersionInfo> GetAvailablePluginUpdates(CancellationToken cancellationToken = default) + public async IAsyncEnumerable<PackageVersionInfo> GetAvailablePluginUpdates([EnumeratorCancellation] CancellationToken cancellationToken = default) { var catalog = await GetAvailablePackages(cancellationToken).ConfigureAwait(false); |
