mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 18:27:43 +00:00
Ignore external missing attachments
This commit is contained in:
parent
fa19574461
commit
8906c0a777
1 changed files with 5 additions and 1 deletions
|
@ -2469,7 +2469,11 @@ public class FragmentCompose extends FragmentBase {
|
|||
ArrayList<Uri> uris = args.getParcelableArrayList("attachments");
|
||||
if (uris != null)
|
||||
for (Uri uri : uris)
|
||||
addAttachment(context, data.draft.id, uri, false);
|
||||
try {
|
||||
addAttachment(context, data.draft.id, uri, false);
|
||||
} catch (IOException ex) {
|
||||
Log.e(ex);
|
||||
}
|
||||
} else if (ref != null &&
|
||||
("reply".equals(action) || "reply_all".equals(action) ||
|
||||
"forward".equals(action) || "editasnew".equals(action))) {
|
||||
|
|
Loading…
Reference in a new issue