Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
* master:
  Executable to lowercase to match the path case
  • Loading branch information
anaisbetts committed Jan 11, 2024
2 parents 35b1a0b + b26d124 commit 51f5e2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Squirrel/TrayHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public unsafe void RemoveDeadEntries(List<string> executablesInPackage, string r
var path = item.ExePath.ToLowerInvariant();

// Someone completely unrelated? Keep it!
if (!executablesInPackage.Any(exe => path.Contains(exe))) {
if (!executablesInPackage.Any(exe => path.Contains(exe.ToLowerInvariant()))) {
goto keepItem;
}

Expand Down

0 comments on commit 51f5e2c

Please sign in to comment.