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 b348deb commit d4a1953Copy full SHA for d4a1953
Flow.Launcher.Core/Plugin/PluginManager.cs
@@ -265,13 +265,13 @@ public static async Task InitializePluginsAsync(IResultUpdateRegister register)
265
{
266
pair.Metadata.Disabled = true;
267
pair.Metadata.HomeDisabled = true;
268
- _initFailedPlugins.TryAdd(pair.Metadata.ID, pair);
269
API.LogDebug(ClassName, $"Disable plugin <{pair.Metadata.Name}> because init failed");
270
}
271
272
// Even if the plugin cannot be initialized, we still need to add it in all plugin list so that
273
// we can remove the plugin from Plugin or Store page or Plugin Manager plugin.
274
_allInitializedPlugins.TryAdd(pair.Metadata.ID, pair);
+ _initFailedPlugins.TryAdd(pair.Metadata.ID, pair);
275
return;
276
277
0 commit comments