Skip to content

Commit e505ace

Browse files
authored
Fix: Fixed an issue where name sorting was case sensitive (#17029)
1 parent 96143bb commit e505ace

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Files.App/Helpers/NaturalStringComparer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public sealed class NaturalStringComparer
88
{
99
public static IComparer<object> GetForProcessor()
1010
{
11-
return new NaturalComparer(StringComparison.CurrentCulture);
11+
return new NaturalComparer(StringComparison.CurrentCultureIgnoreCase);
1212
}
1313

1414
/// <summary>

0 commit comments

Comments
 (0)