Auto download attachments on unmetered connection

This commit is contained in:
M66B 2018-10-01 13:05:14 +00:00
parent aa138cabc0
commit 34884e7e85
1 changed files with 2 additions and 2 deletions

View File

@ -1795,7 +1795,7 @@ public class ServiceSynchronize extends LifecycleService {
if (!fetch) if (!fetch)
for (EntityAttachment attachment : attachments) for (EntityAttachment attachment : attachments)
if (!attachment.available) if (!attachment.available)
if (attachment.size != null && attachment.size < ATTACHMENT_AUTO_DOWNLOAD_SIZE) { if (!metered || (attachment.size != null && attachment.size < ATTACHMENT_AUTO_DOWNLOAD_SIZE)) {
fetch = true; fetch = true;
break; break;
} }
@ -1825,7 +1825,7 @@ public class ServiceSynchronize extends LifecycleService {
for (int i = 0; i < attachments.size(); i++) { for (int i = 0; i < attachments.size(); i++) {
EntityAttachment attachment = attachments.get(i); EntityAttachment attachment = attachments.get(i);
if (!attachment.available) if (!attachment.available)
if (attachment.size != null && attachment.size < ATTACHMENT_AUTO_DOWNLOAD_SIZE) { if (!metered || (attachment.size != null && attachment.size < ATTACHMENT_AUTO_DOWNLOAD_SIZE)) {
if (iattachments == null) if (iattachments == null)
iattachments = helper.getAttachments(); iattachments = helper.getAttachments();
attachment.part = iattachments.get(i).part; attachment.part = iattachments.get(i).part;