Usse attachmentsJson.
Change-Id: If8af8c1d10359a8024bcb63ad1ba11f008d8f22f
This commit is contained in:
parent
e7cab0a8a4
commit
0729415a3e
@ -3022,14 +3022,14 @@ outer:
|
||||
}
|
||||
|
||||
// Get attachments from the ContentValues
|
||||
ArrayList<com.android.mail.providers.Attachment> uiAtts =
|
||||
com.android.mail.providers.Attachment.getAttachmentsFromJoinedAttachmentInfo(
|
||||
List<com.android.mail.providers.Attachment> uiAtts =
|
||||
com.android.mail.providers.Attachment.fromJSONArray(
|
||||
values.getAsString(UIProvider.MessageColumns.JOINED_ATTACHMENT_INFOS));
|
||||
ArrayList<Attachment> atts = new ArrayList<Attachment>();
|
||||
boolean hasUnloadedAttachments = false;
|
||||
for (com.android.mail.providers.Attachment uiAtt: uiAtts) {
|
||||
Uri attUri = uiAtt.contentUri;
|
||||
if (attUri.getAuthority().equals(EmailContent.AUTHORITY)) {
|
||||
Uri attUri = uiAtt.uri;
|
||||
if (attUri != null && attUri.getAuthority().equals(EmailContent.AUTHORITY)) {
|
||||
// If it's one of ours, retrieve the attachment and add it to the list
|
||||
long attId = Long.parseLong(attUri.getLastPathSegment());
|
||||
Attachment att = Attachment.restoreAttachmentWithId(context, attId);
|
||||
|
@ -228,11 +228,13 @@ public abstract class EmailServiceStub extends IEmailService.Stub implements IEm
|
||||
new String[] {BodyColumns.SOURCE_MESSAGE_KEY},
|
||||
BodyColumns.MESSAGE_KEY + "=?",
|
||||
new String[] {Long.toString(messageId)}, null, 0, -1L);
|
||||
if (sourceId != -1L) {
|
||||
if (sourceId != -1 ) {
|
||||
EmailContent.Message sourceMsg =
|
||||
EmailContent.Message.restoreMessageWithId(mContext, sourceId);
|
||||
mailbox = Mailbox.restoreMailboxWithId(mContext, sourceMsg.mMailboxKey);
|
||||
message.mServerId = sourceMsg.mServerId;
|
||||
if (sourceMsg != null) {
|
||||
mailbox = Mailbox.restoreMailboxWithId(mContext, sourceMsg.mMailboxKey);
|
||||
message.mServerId = sourceMsg.mServerId;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user