1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-24 16:53:37 +00:00

Prevent downloading of child attachments

This commit is contained in:
M66B 2020-10-18 09:24:59 +02:00
parent 1aa57a5aae
commit 475814dad8

View file

@ -189,7 +189,7 @@ public class AdapterAttachment extends RecyclerView.Adapter<AdapterAttachment.Vi
if (attachment.available)
onShare(attachment);
else {
if (attachment.progress == null)
if (attachment.progress == null && attachment.subsequence == null)
onDownload(attachment);
}
}