1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

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

View File

@ -97,7 +97,7 @@ public class FolderInfoHolder implements Comparable<FolderInfoHolder> {
this.status = truncateStatus(folder.getStatus()); 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); this.displayName = context.getString(R.string.special_mailbox_name_inbox);
} else { } else {
this.displayName = folder.getName(); this.displayName = folder.getName();