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:
parent
cd1cc94b8a
commit
40f4820848
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue