Prevent downloading of child attachments

This commit is contained in:
M66B 2020-10-18 09:24:59 +02:00
parent 1aa57a5aae
commit 475814dad8
1 changed files with 1 additions and 1 deletions

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);
}
}