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:
parent
7430b63444
commit
5c2b5af878
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue