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 1f7bfa7 commit 1f019a1Copy full SHA for 1f019a1
Flow.Launcher.Core/Plugin/PluginConfig.cs
@@ -119,7 +119,7 @@ private static PluginMetadata GetPluginMetadata(string pluginDirectory)
119
// for plugins which doesn't has ActionKeywords key
120
metadata.ActionKeywords ??= new List<string> { metadata.ActionKeyword };
121
// for plugin still use old ActionKeyword
122
- metadata.ActionKeyword = metadata.ActionKeywords.Count == 0 ? string.Empty : metadata.ActionKeywords?[0];
+ metadata.ActionKeyword = metadata.ActionKeywords?.Count == 0 ? string.Empty : metadata.ActionKeywords?[0];
123
}
124
catch (Exception e)
125
{
0 commit comments