We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37cc01e commit d1e8bbfCopy full SHA for d1e8bbf
Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs
@@ -553,7 +553,7 @@ private static IEnumerable<Win32> ProgramsHasher(IEnumerable<Win32> programs)
553
if (temp.Any())
554
return DistinctBy(temp, x => x.Description);
555
return g.Take(1);
556
- }).ToArray();
+ });
557
}
558
559
@@ -589,7 +589,7 @@ public static Win32[] All(Settings settings)
589
autoIndexPrograms = autoIndexPrograms.Concat(path);
590
591
592
- autoIndexPrograms = ProgramsHasher(autoIndexPrograms);
+ autoIndexPrograms = ProgramsHasher(autoIndexPrograms).ToArray();
593
594
return programs.Concat(autoIndexPrograms).Where(x => x.Valid).Distinct().ToArray();
595
0 commit comments