application/x-pdf, pdf/pdf, what else?

pull/184/head
M66B 4 years ago
parent b4fd46b50c
commit 82c9d82396

@ -204,7 +204,8 @@ public class EntityAttachment {
if ("video/jpeg".equals(type))
return "image/jpeg";
if ("application/x-pdf".equals(type))
if (!TextUtils.isEmpty(type) &&
(type.endsWith("/pdf") || type.endsWith("/x-pdf")))
return "application/pdf";
if ("application/vnd.ms-pps".equals(type))

Loading…
Cancel
Save