Fix column display for subfolders of draft & sent

This commit is contained in:
Francis Lachapelle
2013-01-11 14:47:13 -05:00
parent c34cca6a16
commit 0211a26aba
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -111,6 +111,10 @@
folderType = @"sent";
else if ([folderName isEqualToString: trashFolderName])
folderType = @"trash";
else if ([folderName hasPrefix: [NSString stringWithFormat: @"%@/", draftsFolderName]])
folderType = @"draft/folder";
else if ([folderName hasPrefix: [NSString stringWithFormat: @"%@/", sentFolderName]])
folderType = @"sent/folder";
else
folderType = @"folder";