Skip to content

Commit 41087d8

Browse files
committed
fix not triggering due to ActionKeyword is string empty when global
1 parent c6bee8a commit 41087d8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Flow.Launcher.Plugin.Explorer.Search.DirectoryInfo;
1+
using Flow.Launcher.Plugin.Explorer.Search.DirectoryInfo;
22
using Flow.Launcher.Plugin.Explorer.Search.FolderLinks;
33
using Flow.Launcher.Plugin.Explorer.Search.WindowsIndex;
44
using Flow.Launcher.Plugin.SharedCommands;
@@ -36,8 +36,7 @@ internal List<Result> Search(Query query)
3636

3737
var quickFolderLinks = quickFolderAccess.FolderList(query, settings.QuickFolderAccessLinks, context);
3838

39-
if (quickFolderLinks.Count > 0 && query.ActionKeyword == settings.SearchActionKeyword)
40-
return quickFolderLinks;
39+
var quickFolderLinks = quickFolderAccess.FolderListMatched(query, settings.QuickFolderAccessLinks, context);
4140

4241
if (string.IsNullOrEmpty(querySearch))
4342
return results;

0 commit comments

Comments
 (0)