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 7e3690f commit 89e430fCopy full SHA for 89e430f
Flow.Launcher.Core/Plugin/PluginManager.cs
@@ -308,6 +308,7 @@ public static PluginPair GetPluginForId(string id)
308
309
public static IEnumerable<PluginPair> GetPluginsForInterface<T>() where T : IFeatures
310
{
311
+ // Handle scenario where this is called before all plugins are instantiated, e.g. language change on startup
312
return AllPlugins?.Where(p => p.Plugin is T) ?? Array.Empty<PluginPair>();
313
}
314
0 commit comments