mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix condition not triggering path search when path is part env variable
This commit is contained in:
parent
11126693b1
commit
a318bcb80e
1 changed files with 4 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
using Flow.Launcher.Plugin.Explorer.Search.DirectoryInfo;
|
||||
using Flow.Launcher.Plugin.Explorer.Search.DirectoryInfo;
|
||||
using Flow.Launcher.Plugin.Explorer.Search.Everything;
|
||||
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks;
|
||||
using Flow.Launcher.Plugin.SharedCommands;
|
||||
|
|
@ -68,7 +68,9 @@ namespace Flow.Launcher.Plugin.Explorer.Search
|
|||
|
||||
IAsyncEnumerable<SearchResult> searchResults;
|
||||
|
||||
bool isPathSearch = query.Search.IsLocationPathString() || IsEnvironmentVariableSearch(query.Search);
|
||||
bool isPathSearch = query.Search.IsLocationPathString()
|
||||
|| EnvironmentVariables.IsEnvironmentVariableSearch(query.Search)
|
||||
|| EnvironmentVariables.HasEnvironmentVar(query.Search);
|
||||
|
||||
string engineName;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue