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 60de423 commit e59903aCopy full SHA for e59903a
1 file changed
Flow.Launcher/ViewModel/PluginStoreItemViewModel.cs
@@ -61,7 +61,7 @@ public string Category
61
[RelayCommand]
62
private void ShowCommandQuery(string action)
63
{
64
- var actionKeyword = PluginManagerData.Metadata.ActionKeywords.Any() ? PluginManagerData.Metadata.ActionKeywords[0] + " " : String.Empty;
+ var actionKeyword = (PluginManagerData.Metadata.ActionKeywords?.Any() ?? false) ? PluginManagerData.Metadata.ActionKeywords[0] + " " : string.Empty;
65
App.API.ChangeQuery($"{actionKeyword}{action} {_plugin.Name}");
66
App.API.ShowMainWindow();
67
}
0 commit comments