diff --git a/Flow.Launcher.Core/Plugin/PluginManager.cs b/Flow.Launcher.Core/Plugin/PluginManager.cs index e837843f4..ddc3a2d52 100644 --- a/Flow.Launcher.Core/Plugin/PluginManager.cs +++ b/Flow.Launcher.Core/Plugin/PluginManager.cs @@ -588,7 +588,12 @@ namespace Flow.Launcher.Core.Plugin public static Dictionary> GetNonGlobalPlugins() { - return _nonGlobalPlugins.ToDictionary(); + var nonGlobalPlugins = new Dictionary>(); + foreach (var kvp in _nonGlobalPlugins) + { + nonGlobalPlugins.Add(kvp.Key, [.. kvp.Value]); + } + return nonGlobalPlugins; } public static List GetTranslationPlugins()