Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9996d800 authored by Jesse Vincent's avatar Jesse Vincent
Browse files

When making sure not to offer up the outbox as a potential folder for

things like Drafts or Inbox, use a case-insensitive comparison
parent d2a32f1e
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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();
                }
                }