1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-03 05:34:51 +00:00

Case insensitive folder name compare

This commit is contained in:
M66B 2024-10-07 20:58:20 +02:00
parent cd1cc94b8a
commit 40f4820848

View file

@ -842,7 +842,7 @@ public class EntityFolder extends EntityOrder implements Serializable {
String name1 = f1.getDisplayName(context);
String name2 = f2.getDisplayName(context);
return Normalizer.normalize(name1, Normalizer.Form.NFD).compareTo(
return Normalizer.normalize(name1, Normalizer.Form.NFD).compareToIgnoreCase(
Normalizer.normalize(name2, Normalizer.Form.NFD));
}
};