mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-29 11:15:51 +00:00
Small improvement
This commit is contained in:
parent
358f7214e1
commit
6f7afbd230
2 changed files with 10 additions and 3 deletions
|
@ -38,6 +38,8 @@ import java.util.List;
|
|||
import java.util.Locale;
|
||||
import java.util.Objects;
|
||||
|
||||
import javax.mail.Part;
|
||||
|
||||
import static androidx.room.ForeignKey.CASCADE;
|
||||
|
||||
@Entity(
|
||||
|
@ -96,9 +98,14 @@ public class EntityAttachment {
|
|||
public Boolean available = false;
|
||||
public String error;
|
||||
|
||||
// Gmail sends inline images as attachments with a name and cid
|
||||
|
||||
boolean isInline() {
|
||||
// Gmail sends inline images as attachments with a name and cid
|
||||
return (cid != null);
|
||||
return (Part.INLINE.equals(disposition) || cid != null);
|
||||
}
|
||||
|
||||
boolean isAttachment() {
|
||||
return (Part.ATTACHMENT.equals(disposition) || !TextUtils.isEmpty(name));
|
||||
}
|
||||
|
||||
boolean isImage() {
|
||||
|
|
|
@ -6362,7 +6362,7 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
|
|||
Element footer = document.createElement("p");
|
||||
footer.appendElement("br").appendElement("hr");
|
||||
for (EntityAttachment attachment : attachments)
|
||||
if (!attachment.isInline()) {
|
||||
if (attachment.isAttachment()) {
|
||||
hasAttachments = true;
|
||||
Element strong = document.createElement("strong");
|
||||
strong.text(getString(R.string.title_attachment));
|
||||
|
|
Loading…
Reference in a new issue