mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix unexpected empty string
This commit is contained in:
parent
0c3a37eb70
commit
428efb1cd0
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search
|
|||
// one of it is enabled
|
||||
var keyword = Settings.EnabledSearchActionKeyword ? Settings.SearchActionKeyword : Settings.PathSearchActionKeyword;
|
||||
|
||||
keyword = keyword == Query.GlobalPluginWildcardSign ? string.Empty : keyword + "";
|
||||
keyword = keyword == Query.GlobalPluginWildcardSign ? string.Empty : keyword + " ";
|
||||
|
||||
string changeTo = path.EndsWith(Constants.DirectorySeperator) ? path : path + Constants.DirectorySeperator;
|
||||
Context.API.ChangeQuery($"{keyword}{changeTo}");
|
||||
|
|
|
|||
Loading…
Reference in a new issue