Small improvement

This commit is contained in:
M66B
2020-04-15 08:42:49 +02:00
parent 358f7214e1
commit 6f7afbd230
2 changed files with 10 additions and 3 deletions

View File

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