Workaround wrong attachment content types

pull/162/head
M66B 6 years ago
parent 59abad45ba
commit a36e260ac6

@ -1224,15 +1224,16 @@ public class MessageHelper {
// For example, sometimes PDF files are sent as application/octet-stream // For example, sometimes PDF files are sent as application/octet-stream
if (!apart.pgp) { if (!apart.pgp) {
String extension = Helper.getExtension(apart.attachment.name); String extension = Helper.getExtension(apart.attachment.name);
if (extension != null && if (extension != null) {
("pdf".equals(extension.toLowerCase(Locale.ROOT)) || if ("application/zip".equals(apart.attachment.type) ||
"application/octet-stream".equals(apart.attachment.type))) { "application/octet-stream".equals(apart.attachment.type)) {
String type = MimeTypeMap.getSingleton() String type = MimeTypeMap.getSingleton()
.getMimeTypeFromExtension(extension.toLowerCase(Locale.ROOT)); .getMimeTypeFromExtension(extension.toLowerCase(Locale.ROOT));
if (type != null) { if (type != null) {
if (!type.equals(apart.attachment.type)) if (!type.equals(apart.attachment.type))
Log.w("Guessing file=" + apart.attachment.name + " type=" + type); Log.w("Guessing file=" + apart.attachment.name + " type=" + type);
apart.attachment.type = type; apart.attachment.type = type;
}
} }
} }
} }

Loading…
Cancel
Save