Added referenced assembly failure detection, and DI failure protection.

pull/4709/head
BaronGreenback 3 years ago
parent dbfbf9fb5b
commit 149c2b2169

@ -413,6 +413,8 @@ namespace Emby.Server.Implementations
catch (Exception ex)
{
Logger.LogError(ex, "Error creating {Type}", type);
// If this is a plugin fail it.
_pluginManager.FailPlugin(type.Assembly);
return null;
}
finally

@ -111,6 +111,10 @@ namespace Emby.Server.Implementations.Plugins
try
{
assembly = Assembly.LoadFrom(file);
// This force loads all reference dll's that the plugin uses in the try..catch block.
// Removing this will cause JF to bomb out if referenced dll's cause issues.
assembly.GetExportedTypes();
}
catch (FileLoadException ex)
{

Loading…
Cancel
Save