mirror of
https://github.com/moparisthebest/k-9
synced 2025-01-12 22:28:10 -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())
|
while (iter.hasNext())
|
||||||
{
|
{
|
||||||
Folder folder = iter.next();
|
Folder folder = iter.next();
|
||||||
if (mAccount.getOutboxFolderName().equals(folder.getName()))
|
if (mAccount.getOutboxFolderName().equalsIgnoreCase(folder.getName()))
|
||||||
{
|
{
|
||||||
iter.remove();
|
iter.remove();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user