Browse Source

Update Emby.Server.Implementations/Plugins/PluginManager.cs

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
David Ullmer 4 years ago
parent
commit
b014f2309d
1 changed files with 8 additions and 0 deletions
  1. 8 0
      Emby.Server.Implementations/Plugins/PluginManager.cs

+ 8 - 0
Emby.Server.Implementations/Plugins/PluginManager.cs

@@ -126,6 +126,14 @@ namespace Emby.Server.Implementations.Plugins
                         ChangePluginState(plugin, PluginStatus.NotSupported);
                         ChangePluginState(plugin, PluginStatus.NotSupported);
                         continue;
                         continue;
                     }
                     }
+#pragma warning disable CA1031 // Do not catch general exception types
+                    catch (Exception ex)
+#pragma warning restore CA1031 // Do not catch general exception types
+                    {
+                        _logger.LogError(ex, "Failed to load assembly {Path}. Unknown exception was thrown. Disabling plugin.", file);
+                        ChangePluginState(plugin, PluginStatus.Malfunctioned);
+                        continue;
+                    }
 
 
                     _logger.LogInformation("Loaded assembly {Assembly} from {Path}", assembly.FullName, file);
                     _logger.LogInformation("Loaded assembly {Assembly} from {Path}", assembly.FullName, file);
                     yield return assembly;
                     yield return assembly;