mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-25 00:58:50 -05:00
When making sure not to offer up the outbox as a potential folder for
things like Drafts or Inbox, use a case-insensitive comparison
This commit is contained in:
parent
d2a32f1ea0
commit
9996d80080
@ -857,7 +857,7 @@ public class AccountSettings extends K9PreferenceActivity {
|
||||
while (iter.hasNext())
|
||||
{
|
||||
Folder folder = iter.next();
|
||||
if (mAccount.getOutboxFolderName().equals(folder.getName()))
|
||||
if (mAccount.getOutboxFolderName().equalsIgnoreCase(folder.getName()))
|
||||
{
|
||||
iter.remove();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user