Explorar o código

Catch HttpRequestException when requesting plugins

crobibero %!s(int64=5) %!d(string=hai) anos
pai
achega
f40bcff113
Modificáronse 1 ficheiros con 5 adicións e 0 borrados
  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 />