diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2020-11-16 07:47:21 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-16 07:47:21 +0100 |
| commit | d53f97d8034d134c8f1cc7b137656257ba0b5a80 (patch) | |
| tree | 0598995fee38a886eb015768f4006acb83aa3f4e /Emby.Server.Implementations/Updates/InstallationManager.cs | |
| parent | 84b0932cfee9d83efce63813f7028b23ca3a0ceb (diff) | |
| parent | e66d79fc0cf1a1a3554e530adfdd3fa8be6967a5 (diff) | |
Merge pull request #4480 from crobibero/http-exception
Remove custom HttpException
Diffstat (limited to 'Emby.Server.Implementations/Updates/InstallationManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Updates/InstallationManager.cs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs index fd1f43e62..6b6b8c4fe 100644 --- a/Emby.Server.Implementations/Updates/InstallationManager.cs +++ b/Emby.Server.Implementations/Updates/InstallationManager.cs @@ -116,11 +116,6 @@ namespace Emby.Server.Implementations.Updates _logger.LogError(ex, "The URL configured for the plugin repository manifest URL is not valid: {Manifest}", manifest); return Array.Empty<PackageInfo>(); } - catch (HttpException ex) - { - _logger.LogError(ex, "An error occurred while accessing the plugin manifest: {Manifest}", manifest); - return Array.Empty<PackageInfo>(); - } catch (HttpRequestException ex) { _logger.LogError(ex, "An error occurred while accessing the plugin manifest: {Manifest}", manifest); |
