Prevent downloading of child attachments

pull/187/head
M66B 5 years ago
parent 1aa57a5aae
commit 475814dad8

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

Loading…
Cancel
Save