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
ce1023876a
commit
efd1b6cfdd
1 changed files with 1 additions and 1 deletions
|
|
@ -389,7 +389,7 @@ namespace Flow.Launcher.Plugin.Program.Programs
|
|||
}
|
||||
|
||||
var toFilter = new List<string>();
|
||||
var paths = pathEnv.Split(";", StringSplitOptions.RemoveEmptyEntries).ToList().ConvertAll(x => x.ToLower()).Distinct();
|
||||
var paths = pathEnv.Split(";", StringSplitOptions.RemoveEmptyEntries).DistinctBy(p => p.ToLower());
|
||||
|
||||
foreach (var path in paths)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue