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

Now that we have internal_date on all messages, we should be using it

for sorting. This will prevent spam with ...less true dates from pushing
messages to the top of your list. Additionally, when downloading
messages from the server, they'll actually appear in the order they were
received - the existing behaviour really screwed up users who were
trying to triage mail as it came in.
This commit is contained in:
Jesse Vincent 2010-07-08 16:33:19 +00:00
parent fd234c2701
commit dbb4d6e21c

View File

@ -2445,7 +2445,7 @@ public class MessageList
{
LocalMessage message = (LocalMessage) m;
Date date = message.getSentDate();
this.compareDate = date;
this.compareDate = message.getInternalDate();
this.folder = folder;
if (Utility.isDateToday(date))