Merge "Handle non-ascii folder names properly" into jb-ub-mail

This commit is contained in:
Marc Blank 2012-08-17 14:01:42 -07:00 committed by Android (Google) Code Review
commit 9633312e0b
1 changed files with 2 additions and 2 deletions

View File

@ -1223,9 +1223,9 @@ public class Imap2SyncService extends AbstractSyncService {
}
Mailbox m = new Mailbox();
m.mDisplayName = displayName;
m.mDisplayName = decodeFolderName(displayName, null);
m.mAccountKey = mAccountId;
m.mServerId = serverId;
m.mServerId = decodeFolderName(serverId, null);
if (parentName != null && !parentList.contains(parentName)) {
parentList.add(parentName);
}