diff options
| author | David <daullmer@gmail.com> | 2020-07-18 19:21:43 +0200 |
|---|---|---|
| committer | David <daullmer@gmail.com> | 2020-07-18 19:21:43 +0200 |
| commit | 0e1bf316b5c8da1d1f334fabe4a0abf77185f2e0 (patch) | |
| tree | dd59ea68b275ec8125ca454422cd027d891de477 /Emby.Server.Implementations/Updates/InstallationManager.cs | |
| parent | fa4e0a73d5eb0b33dc85dffb2a2d35033c5ce698 (diff) | |
| parent | 09c05ff9faff4fd5013e19fad74835bdf796393f (diff) | |
Merge branch 'master' of github.com:jellyfin/jellyfin into socket-binding
Diffstat (limited to 'Emby.Server.Implementations/Updates/InstallationManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Updates/InstallationManager.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs index 146ebaf25..4f54c06dd 100644 --- a/Emby.Server.Implementations/Updates/InstallationManager.cs +++ b/Emby.Server.Implementations/Updates/InstallationManager.cs @@ -148,6 +148,11 @@ namespace Emby.Server.Implementations.Updates _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); + return Array.Empty<PackageInfo>(); + } } /// <inheritdoc /> |
