mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-04 08:08:16 +02:00
Added workaround for NIL message content type
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user