Compare folder account name case insensitive

This commit is contained in:
M66B 2019-03-17 14:52:19 +00:00
parent 0a2647f0c7
commit ff3bebce3c
1 changed files with 1 additions and 1 deletions

View File

@ -496,7 +496,7 @@ public class AdapterFolder extends RecyclerView.Adapter<AdapterFolder.ViewHolder
if (f1.accountName == null || f2.accountName == null)
return 0;
return f1.accountName.compareTo(f2.accountName);
return collator.compare(f1.accountName, f2.accountName);
} else {
int i1 = EntityFolder.FOLDER_SORT_ORDER.indexOf(f1.type);