mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 19:35:10 +01:00
Lower case with root locale
This commit is contained in:
@@ -390,7 +390,7 @@ public class EntityFolder extends EntityOrder implements Serializable {
|
||||
return null;
|
||||
|
||||
if (attr.startsWith("\\")) {
|
||||
int index = SYSTEM_FOLDER_ATTR.indexOf(attr.substring(1).toLowerCase());
|
||||
int index = SYSTEM_FOLDER_ATTR.indexOf(attr.substring(1).toLowerCase(Locale.ROOT));
|
||||
if (index >= 0)
|
||||
return SYSTEM_FOLDER_TYPE.get(index);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user