Add fallbacks if sentDate is not set
b/11520812 This should make behavior better if the imap server does not set the date header. Change-Id: I593e14ce0a94179a39779ec47831fb8d3caef95b
This commit is contained in:
parent
33efdd7dad
commit
e39f2b0f27
@ -988,6 +988,8 @@ public abstract class EmailContent {
|
||||
if (doSave) {
|
||||
return super.save(context);
|
||||
} else {
|
||||
// FLAG: Should we be doing this? In the base class, if someone calls "save" on
|
||||
// an EmailContent that is already saved, it throws an exception.
|
||||
// Call update, rather than super.update in case we ever override it
|
||||
if (update(context, toContentValues()) == 1) {
|
||||
return getUri();
|
||||
|
@ -92,6 +92,9 @@ public class LegacyConversions {
|
||||
}
|
||||
if (sentDate != null) {
|
||||
localMessage.mTimeStamp = sentDate.getTime();
|
||||
} else if (internalDate != null) {
|
||||
LogUtils.w(Logging.LOG_TAG, "No sentDate, falling back to internalDate");
|
||||
localMessage.mTimeStamp = internalDate.getTime();
|
||||
}
|
||||
if (subject != null) {
|
||||
localMessage.mSubject = subject;
|
||||
|
Loading…
Reference in New Issue
Block a user