File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Plugins/Flow.Launcher.Plugin.Explorer/Search/WindowsIndex Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -179,9 +179,9 @@ private static List<Result> ResultForWindexSearchOff(string rawQuery)
179
179
{
180
180
SearchManager . Settings . WarnWindowsSearchServiceOff = false ;
181
181
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" ) ;
183
183
184
- var actionKeywordCount = pluginsManagerPlugins . Metadata . ActionKeywords . Count ;
184
+ var actionKeywordCount = pluginsManagerPlugin . Metadata . ActionKeywords . Count ;
185
185
186
186
if ( actionKeywordCount > 1 )
187
187
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)
193
193
MessageBoxButton . YesNo ) == MessageBoxResult . Yes
194
194
&& actionKeywordCount == 1 )
195
195
{
196
- api . ChangeQuery ( string . Format ( "{0} install everything" , pluginsManagerPlugins . Metadata . ActionKeywords [ 0 ] ) ) ;
196
+ api . ChangeQuery ( string . Format ( "{0} install everything" , pluginsManagerPlugin . Metadata . ActionKeywords [ 0 ] ) ) ;
197
197
}
198
198
else
199
199
{
You can’t perform that action at this time.
0 commit comments