1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-02 00:25:10 -04:00

Finish backing out the "sort by received date" patch until we get the

recieved-date support sorted out
This commit is contained in:
Jesse Vincent 2010-07-19 01:53:14 +00:00
parent 111e6f5109
commit a63beda64b

View File

@ -2485,10 +2485,10 @@ public class MessageList
{
LocalMessage message = (LocalMessage) m;
Date date = message.getSentDate();
this.compareDate = message.getInternalDate();
this.compareDate = message.getSentDate();
if (this.compareDate == null)
{
this.compareDate = message.getSentDate();
this.compareDate = message.getInternalDate();
}
this.folder = folder;