mirror of https://github.com/M66B/FairEmail.git
Prevent downloading of child attachments
This commit is contained in:
parent
1aa57a5aae
commit
475814dad8
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue