From d5d141f9db6d8c2e96cfbb96246db3405de58df6 Mon Sep 17 00:00:00 2001 From: Vic <10308169+VictoriousRaptor@users.noreply.github.com> Date: Sun, 16 Oct 2022 20:18:26 +0800 Subject: [PATCH] Remove duplicate win32 programs --- Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs b/Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs index b8bfbef8a..f0c783d76 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs +++ b/Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs @@ -565,7 +565,7 @@ namespace Flow.Launcher.Plugin.Program.Programs autoIndexPrograms = ProgramsHasher(autoIndexPrograms); - return programs.Concat(autoIndexPrograms).Distinct().ToArray(); + return ProgramsHasher(programs.Concat(autoIndexPrograms)).ToArray(); } #if DEBUG //This is to make developer aware of any unhandled exception and add in handling. catch (Exception)