1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04: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:
Jesse Vincent 2011-03-09 16:32:25 -05:00
parent d2a32f1ea0
commit 9996d80080

View File

@ -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();
}