From 62dd6730e8487e5965bc87209b16179a8c7afa55 Mon Sep 17 00:00:00 2001 From: Xjph Date: Sun, 30 Oct 2022 19:16:47 -0230 Subject: [PATCH] Handle general exceptions during plugin loading. --- ObservatoryCore/PluginManagement/PluginManager.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ObservatoryCore/PluginManagement/PluginManager.cs b/ObservatoryCore/PluginManagement/PluginManager.cs index 12031f3..9968734 100644 --- a/ObservatoryCore/PluginManagement/PluginManager.cs +++ b/ObservatoryCore/PluginManagement/PluginManager.cs @@ -85,12 +85,20 @@ namespace Observatory.PluginManagement errorList.Add((FormatErrorMessage(ex), ex.StackTrace)); errorPlugins.Add(plugin); } + catch (Exception ex) + { + errorList.Add(($"{plugin.ShortName}: {ex.Message}", ex.StackTrace)); + errorPlugins.Add(plugin); + } } } notifyPlugins.RemoveAll(n => errorPlugins.Contains(n.plugin)); core.Notification += pluginHandler.OnNotificationEvent; + + if (errorList.Any()) + ErrorReporter.ShowErrorPopup("Plugin Load Error" + (errorList.Count > 1 ? "s" : String.Empty), errorList); } private static string FormatErrorMessage(PluginException ex)