Browse Source

Merge pull request #3573 from crobibero/plugin-request-exception

Catch HttpRequestException when requesting plugins
dkanada 4 years ago
parent
commit
10d396d56d
1 changed files with 5 additions and 0 deletions
  1. 5 0
      Emby.Server.Implementations/Updates/InstallationManager.cs

+ 5 - 0
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 />