Skip to content

Commit 8150d83

Browse files
committed
Fix: Fixed an issue where name sorting was case sensitive
1 parent 2747d23 commit 8150d83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Files.App/Helpers/NaturalStringComparer.cs

Lines changed: 1 addition & 1 deletion
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)