We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc01ddb commit b348debCopy full SHA for b348deb
Flow.Launcher.Core/Plugin/PluginManager.cs
@@ -31,8 +31,8 @@ public static class PluginManager
31
private static IPublicAPI API => api ??= Ioc.Default.GetRequiredService<IPublicAPI>();
32
33
private static List<PluginPair> _allLoadedPlugins;
34
- private static readonly ConcurrentDictionary<string, PluginPair> _initFailedPlugins = [];
35
private static readonly ConcurrentDictionary<string, PluginPair> _allInitializedPlugins = [];
+ private static readonly ConcurrentDictionary<string, PluginPair> _initFailedPlugins = [];
36
private static readonly ConcurrentDictionary<string, PluginPair> _globalPlugins = [];
37
private static readonly ConcurrentDictionary<string, PluginPair> _nonGlobalPlugins = [];
38
0 commit comments