mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-29 00:51:44 +01:00
Dynamically configure inbox
This commit is contained in:
@@ -254,7 +254,7 @@ public class Helper {
|
||||
}
|
||||
|
||||
static String localizeFolderName(Context context, String name) {
|
||||
if ("INBOX".equals(name))
|
||||
if (name != null && "INBOX".equals(name.toUpperCase()))
|
||||
return context.getString(R.string.title_folder_inbox);
|
||||
else if ("OUTBOX".equals(name))
|
||||
return context.getString(R.string.title_folder_outbox);
|
||||
|
||||
Reference in New Issue
Block a user