mirror of https://github.com/M66B/FairEmail.git
Guess all attachment extensions
This commit is contained in:
parent
0d27a3f77c
commit
c9eb3ebae3
|
@ -4237,9 +4237,9 @@ public class FragmentCompose extends FragmentBase {
|
|||
UriInfo info = getInfo(uri, context);
|
||||
|
||||
String ext = Helper.getExtension(info.name);
|
||||
if (info.name != null && ext == null &&
|
||||
info.type != null && ImageHelper.isImage(info.type.toLowerCase(Locale.ROOT))) {
|
||||
String guessed = MimeTypeMap.getSingleton().getExtensionFromMimeType(info.type.toLowerCase(Locale.ROOT));
|
||||
if (info.name != null && ext == null && info.type != null) {
|
||||
String guessed = MimeTypeMap.getSingleton()
|
||||
.getExtensionFromMimeType(info.type.toLowerCase(Locale.ROOT));
|
||||
if (!TextUtils.isEmpty(guessed)) {
|
||||
ext = guessed;
|
||||
info.name += '.' + ext;
|
||||
|
|
Loading…
Reference in New Issue