Prevent downloading of child attachments

pull/187/head
M66B 4 years ago
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…
Cancel
Save