1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Set the MessageId header, rather than Adding it when restoring from the local store. Hopefully, this will fix issue 498

This commit is contained in:
Jesse Vincent 2009-06-18 14:54:06 +00:00
parent 25f2941cf8
commit 2cb5bdebb3

View File

@ -916,7 +916,7 @@ public class LocalStore extends Store implements Serializable {
message.setReplyTo(Address.unpack(cursor.getString(9)));
message.mAttachmentCount = cursor.getInt(10);
message.setInternalDate(new Date(cursor.getLong(11)));
message.addHeader("Message-ID", cursor.getString(12));
message.setHeader("Message-ID", cursor.getString(12));
}
@Override