Fixed crash

This commit is contained in:
M66B 2018-12-12 19:35:23 +01:00
parent a03b41506c
commit c58615e15e
1 changed files with 6 additions and 3 deletions

View File

@ -2438,9 +2438,12 @@ public class ServiceSynchronize extends LifecycleService {
if (!metered || (attachment.size != null && attachment.size < download)) {
if (iattachments == null)
iattachments = helper.getAttachments();
attachment.part = iattachments.get(i).part;
attachment.download(context, db);
Log.i(Helper.TAG, folder.name + " downloaded message id=" + message.id + " attachment=" + attachment.name + " size=" + message.size);
// Attachments of drafts might not have been uploaded yet
if (i < iattachments.size()) {
attachment.part = iattachments.get(i).part;
attachment.download(context, db);
Log.i(Helper.TAG, folder.name + " downloaded message id=" + message.id + " attachment=" + attachment.name + " size=" + message.size);
}
}
}
}