Skip to content

Commit e9462e8

Browse files
committed
revert change from check string is path back to check location exists
1 parent 51c7b69 commit e9462e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ internal async Task<List<Result>> SearchAsync(Query query, CancellationToken tok
7070
if (isEnvironmentVariablePath)
7171
locationPath = EnvironmentVariables.TranslateEnvironmentVariablePath(locationPath);
7272

73-
if (!FilesFolders.ReturnPreviousDirectoryIfIncompleteString(locationPath).IsLocationPathString())
73+
if (!FilesFolders.LocationExists(FilesFolders.ReturnPreviousDirectoryIfIncompleteString(locationPath)))
7474
return results;
7575

7676
var useIndexSearch = UseWindowsIndexForDirectorySearch(locationPath);

0 commit comments

Comments
 (0)