From f588f2a763caaca4f6b7fe9774084b4ae40489d2 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Sun, 25 Jul 2021 20:44:04 +1000 Subject: [PATCH] fix typo --- .../Search/WindowsIndex/IndexSearch.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Search/WindowsIndex/IndexSearch.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Search/WindowsIndex/IndexSearch.cs index 15251fcfb..d42989457 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Search/WindowsIndex/IndexSearch.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Search/WindowsIndex/IndexSearch.cs @@ -179,9 +179,9 @@ namespace Flow.Launcher.Plugin.Explorer.Search.WindowsIndex { SearchManager.Settings.WarnWindowsSearchServiceOff = false; - var pluginsManagerPlugins= api.GetAllPlugins().FirstOrDefault(x => x.Metadata.ID == "9f8f9b14-2518-4907-b211-35ab6290dee7"); + var pluginsManagerPlugin= api.GetAllPlugins().FirstOrDefault(x => x.Metadata.ID == "9f8f9b14-2518-4907-b211-35ab6290dee7"); - var actionKeywordCount = pluginsManagerPlugins.Metadata.ActionKeywords.Count; + var actionKeywordCount = pluginsManagerPlugin.Metadata.ActionKeywords.Count; if (actionKeywordCount > 1) LogException("PluginsManager's action keyword has increased to more than 1, this does not allow for determining the " + @@ -193,7 +193,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search.WindowsIndex MessageBoxButton.YesNo) == MessageBoxResult.Yes && actionKeywordCount == 1) { - api.ChangeQuery(string.Format("{0} install everything", pluginsManagerPlugins.Metadata.ActionKeywords[0])); + api.ChangeQuery(string.Format("{0} install everything", pluginsManagerPlugin.Metadata.ActionKeywords[0])); } else {