Skip to content

Commit 59f9540

Browse files
committed
Removed duplicates again
1 parent d89d3e6 commit 59f9540

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Assent/Reporters/DiffPrograms/DiffProgramBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ protected static IReadOnlyList<string> WindowsProgramFilePaths()
1818
DirPath.GetFromEnvironmentOrNull("LocalAppData", "Programs")
1919
};
2020

21-
return result.Where(r => r != null).Select(r => r!).ToArray();
21+
return result.Where(r => r != null).Select(r => r!).Distinct().ToArray();
2222
}
2323

2424
public IReadOnlyList<string> SearchPaths { get; }

0 commit comments

Comments
 (0)