mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 05:44:51 +02:00
Small mime type fix
This commit is contained in:
@@ -202,6 +202,17 @@ public class EntityAttachment {
|
||||
if (encryption != null)
|
||||
return type;
|
||||
|
||||
if ("audio/mid".equals(type))
|
||||
return "audio/midi";
|
||||
|
||||
// https://www.rfc-editor.org/rfc/rfc3555.txt
|
||||
if ("image/jpg".equals(type) || "video/jpeg".equals(type))
|
||||
return "image/jpeg";
|
||||
|
||||
if (!TextUtils.isEmpty(type) &&
|
||||
(type.endsWith("/pdf") || type.endsWith("/x-pdf")))
|
||||
return "application/pdf";
|
||||
|
||||
String extension = Helper.getExtension(name);
|
||||
if (extension == null)
|
||||
return type;
|
||||
@@ -300,17 +311,6 @@ public class EntityAttachment {
|
||||
if ("text/plain".equals(type) && "ovpn".equals(extension))
|
||||
return "application/x-openvpn-profile";
|
||||
|
||||
if ("audio/mid".equals(type))
|
||||
return "audio/midi";
|
||||
|
||||
// https://www.rfc-editor.org/rfc/rfc3555.txt
|
||||
if ("image/jpg".equals(type) || "video/jpeg".equals(type))
|
||||
return "image/jpeg";
|
||||
|
||||
if (!TextUtils.isEmpty(type) &&
|
||||
(type.endsWith("/pdf") || type.endsWith("/x-pdf")))
|
||||
return "application/pdf";
|
||||
|
||||
// Guess types
|
||||
if (gtype != null) {
|
||||
if (TextUtils.isEmpty(type) ||
|
||||
|
||||
Reference in New Issue
Block a user