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 d1be135 commit 2cc4e84Copy full SHA for 2cc4e84
Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs
@@ -331,10 +331,10 @@ private static ParallelQuery<Win32> StartMenuPrograms(string[] suffixes)
331
.Where(t1 => !disabledProgramsList.Any(x => x.UniqueIdentifier == t1))
332
.Distinct()
333
.Select(x => Extension(x) switch
334
- {
335
- ShortcutExtension => LnkProgram(x),
336
- _ => Win32Program(x)
337
- }).Where(x => x.Valid);
+ {
+ ShortcutExtension => LnkProgram(x),
+ _ => Win32Program(x)
+ }).Where(x => x.Valid);
338
return programs;
339
}
340
0 commit comments