Skip to content

Commit 428efb1

Browse files
committed
fix unexpected empty string
1 parent 0c3a37e commit 428efb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ internal static Result CreateFolderResult(string title, string subtitle, string
4444
// one of it is enabled
4545
var keyword = Settings.EnabledSearchActionKeyword ? Settings.SearchActionKeyword : Settings.PathSearchActionKeyword;
4646

47-
keyword = keyword == Query.GlobalPluginWildcardSign ? string.Empty : keyword + "";
47+
keyword = keyword == Query.GlobalPluginWildcardSign ? string.Empty : keyword + " ";
4848

4949
string changeTo = path.EndsWith(Constants.DirectorySeperator) ? path : path + Constants.DirectorySeperator;
5050
Context.API.ChangeQuery($"{keyword}{changeTo}");

0 commit comments

Comments
 (0)