Replaced references to K9.INBOX with account.getInboxFolderName()

This commit is contained in:
bitblaster 2011-04-05 02:11:21 -07:00 committed by Jesse Vincent
parent 680e2e4191
commit 236226858c
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ public class FolderInfoHolder implements Comparable<FolderInfoHolder> {
this.status = truncateStatus(folder.getStatus());
if (this.name.equalsIgnoreCase(K9.INBOX)) {
if (this.name.equalsIgnoreCase(account.getInboxFolderName())) {
this.displayName = context.getString(R.string.special_mailbox_name_inbox);
} else {
this.displayName = folder.getName();