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 08d428e commit c5167cbCopy full SHA for c5167cb
Flow.Launcher.Core/Plugin/PluginManager.cs
@@ -118,7 +118,9 @@ public static async Task InitializePlugins(IPublicAPI api)
118
_contextMenuPlugins = GetPluginsForInterface<IContextMenu>();
119
foreach (var plugin in AllPlugins)
120
{
121
- foreach (var actionKeyword in plugin.Metadata.ActionKeywords)
+ // set distinct on each plugin's action keywords helps only firing global(*) and action keywords once where a plugin
122
+ // has multiple global and action keywords because we will only add them here once.
123
+ foreach (var actionKeyword in plugin.Metadata.ActionKeywords.Distinct())
124
125
switch (actionKeyword)
126
0 commit comments