Menu

#3 INBOX should be handled case insensitively

open
nobody
None
5
2005-12-16
2005-12-16
No

MaildirFolder.getFolder(String name):

I think the line:

} else if (name.equals("INBOX")) {

should read:

} else if (name.toUpperCase().equals("INBOX")) {

as is done in the constructor.
i.e. INBOX should be case insensitively matched.

Discussion


Log in to post a comment.

MongoDB Logo MongoDB