Small mime type fix

This commit is contained in:
M66B
2022-07-10 22:29:06 +02:00
parent 46847f7155
commit a6b4c61dbc

View File

@@ -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) ||