mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
minor fix
This commit is contained in:
parent
ac7a1a7ce8
commit
24afcb22a1
1 changed files with 1 additions and 1 deletions
|
|
@ -381,7 +381,7 @@ namespace Flow.Launcher.Plugin.Program.Programs
|
|||
return Array.Empty<Win32>();
|
||||
}
|
||||
|
||||
var paths = pathEnv.Split(";", StringSplitOptions.RemoveEmptyEntries).DistinctBy(p => p.ToLower());
|
||||
var paths = pathEnv.Split(";", StringSplitOptions.RemoveEmptyEntries).DistinctBy(p => p.ToLowerInvariant());
|
||||
|
||||
var toFilter = paths.SelectMany(p => ProgramPaths(p, suffixes, recursive:false));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue