Skip to content

Commit f588f2a

Browse files
committed
fix typo
1 parent 0f9fd94 commit f588f2a

File tree

1 file changed

+3
-3
lines changed
  • Plugins/Flow.Launcher.Plugin.Explorer/Search/WindowsIndex

1 file changed

+3
-3
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Search/WindowsIndex/IndexSearch.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ private static List<Result> ResultForWindexSearchOff(string rawQuery)
179179
{
180180
SearchManager.Settings.WarnWindowsSearchServiceOff = false;
181181

182-
var pluginsManagerPlugins= api.GetAllPlugins().FirstOrDefault(x => x.Metadata.ID == "9f8f9b14-2518-4907-b211-35ab6290dee7");
182+
var pluginsManagerPlugin= api.GetAllPlugins().FirstOrDefault(x => x.Metadata.ID == "9f8f9b14-2518-4907-b211-35ab6290dee7");
183183

184-
var actionKeywordCount = pluginsManagerPlugins.Metadata.ActionKeywords.Count;
184+
var actionKeywordCount = pluginsManagerPlugin.Metadata.ActionKeywords.Count;
185185

186186
if (actionKeywordCount > 1)
187187
LogException("PluginsManager's action keyword has increased to more than 1, this does not allow for determining the " +
@@ -193,7 +193,7 @@ private static List<Result> ResultForWindexSearchOff(string rawQuery)
193193
MessageBoxButton.YesNo) == MessageBoxResult.Yes
194194
&& actionKeywordCount == 1)
195195
{
196-
api.ChangeQuery(string.Format("{0} install everything", pluginsManagerPlugins.Metadata.ActionKeywords[0]));
196+
api.ChangeQuery(string.Format("{0} install everything", pluginsManagerPlugin.Metadata.ActionKeywords[0]));
197197
}
198198
else
199199
{

0 commit comments

Comments
 (0)