Catch attachments parse exceptions

This commit is contained in:
M66B 2019-03-13 16:55:29 +00:00
parent a20247a9cd
commit 8c55c6dc8d
1 changed files with 7 additions and 1 deletions

View File

@ -644,7 +644,13 @@ public class MessageHelper {
List<EntityAttachment> result = new ArrayList<>();
for (AttachmentPart apart : attachments) {
ContentType ct = new ContentType(apart.part.getContentType());
ContentType ct;
try {
ct = new ContentType(apart.part.getContentType());
} catch (ParseException ex) {
Log.w(ex);
ct = new ContentType("application/octet-stream");
}
String[] cid = apart.part.getHeader("Content-ID");
EntityAttachment attachment = new EntityAttachment();