mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-29 05:15:13 +02:00
Ignore external missing attachments
This commit is contained in:
@@ -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))) {
|
||||
|
||||
Reference in New Issue
Block a user