Show sending status in ViewEmailFragment

This commit is contained in:
str4d
2014-05-23 01:58:39 +00:00
parent 0fbbc2e937
commit eaee7a0fbc
4 changed files with 31 additions and 1 deletions

View File

@@ -200,6 +200,10 @@ public class BoteHelper extends GeneralHelper {
}
public static boolean isOutbox(EmailFolder folder) {
return "Outbox".equalsIgnoreCase(folder.getName());
return isOutbox(folder.getName());
}
public static boolean isOutbox(String folderName) {
return "Outbox".equalsIgnoreCase(folderName);
}
}