mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 22:51:02 +00:00
Fixed non attachments
This commit is contained in:
parent
ea66c6100e
commit
4f2d37e226
1 changed files with 1 additions and 1 deletions
|
@ -352,7 +352,7 @@ public class MessageHelper {
|
|||
filename = null;
|
||||
}
|
||||
|
||||
if (disposition == null || Part.ATTACHMENT.equalsIgnoreCase(disposition) || !TextUtils.isEmpty(filename)) {
|
||||
if (Part.ATTACHMENT.equalsIgnoreCase(disposition) || !TextUtils.isEmpty(filename)) {
|
||||
ContentType ct = new ContentType(part.getContentType());
|
||||
EntityAttachment attachment = new EntityAttachment();
|
||||
attachment.name = filename;
|
||||
|
|
Loading…
Reference in a new issue