TF-2610 Fix missing attachments when sent from iphone

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2024-02-20 15:50:28 +07:00
committed by Dat H. Pham
parent 086959e7ff
commit 412b7f7bee
2 changed files with 1 additions and 5 deletions
-4
View File
@@ -37,10 +37,6 @@ class Attachment with EquatableMixin {
bool isDispositionInlined() => disposition == ContentDisposition.inline;
bool isDispositionAttachment() => disposition == ContentDisposition.attachment;
bool isDispositionAttachmentNoCID() => isDispositionAttachment() && noCid();
bool isApplicationRTFInlined() => type?.mimeType == applicationRTFType && isDispositionInlined();
String getDownloadUrl(String baseDownloadUrl, AccountId accountId) {