1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 15:11:03 +00:00

Encryption attachments are inline

This commit is contained in:
M66B 2019-08-22 12:58:11 +02:00
parent 7430b63444
commit 5c2b5af878

View file

@ -92,6 +92,8 @@ public class EntityAttachment {
public String error;
boolean isInline() {
if (encryption != null)
return true;
return (disposition != null && disposition.equalsIgnoreCase(Part.INLINE) && cid != null);
}