Made parse error a warning

pull/162/head
M66B 5 years ago
parent 830c05839a
commit 965bb98c44

@ -1034,10 +1034,15 @@ public class MessageHelper {
for (int i = 0; i < multipart.getCount(); i++)
try {
Part cpart = multipart.getBodyPart(i);
try {
ContentType ct = new ContentType(cpart.getContentType());
if ("application/pgp-encrypted".equals(ct.getBaseType().toLowerCase()))
pgp = true;
else
} catch (ParseException ex) {
Log.w(ex);
}
getMessageParts(cpart, parts, pgp);
} catch (ParseException ex) {
// Nested body: try to continue

Loading…
Cancel
Save