Added workaround for NIL message content type

pull/210/head
M66B 2 years ago
parent f7d7f411bf
commit edd995cf37

@ -4501,6 +4501,14 @@ public class MessageHelper {
!Part.ATTACHMENT.equalsIgnoreCase(disposition) && TextUtils.isEmpty(filename)) {
parts.text.add(new PartHolder(part, contentType));
} else {
// Workaround for NIL message content type
if ("application/octet-stream".equals(ct) && part instanceof MimeMessage) {
ContentType plain = new ContentType("text/plain");
plain.setParameterList(contentType.getParameterList());
Log.w("Converting from " + contentType + " to " + plain);
parts.text.add(new PartHolder(part, plain));
}
if (Report.isDeliveryStatus(ct) ||
Report.isDispositionNotification(ct) ||
Report.isFeedbackReport(ct))

Loading…
Cancel
Save