Fix missing timestamp in SendReq

// FREEBIE
This commit is contained in:
Jake McGinty 2015-03-27 15:00:32 -07:00
parent 88ed8f3887
commit 349faf18fa

View File

@ -53,7 +53,11 @@ public abstract class SendJob extends MasterSecretJob {
} catch (MmsException me) {
throw new UndeliverableMessageException(me);
}
return new SendReq(message.getPduHeaders(), body);
return new SendReq(message.getPduHeaders(),
body,
message.getDatabaseMessageId(),
message.getDatabaseMessageBox(),
message.getSentTimestamp());
}
private PduPart getResolvedPart(MasterSecret masterSecret, MediaConstraints constraints,