1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-12 12:35:04 -05:00

Revert "When deciding whether a message is older than a certain date, we should"

This reverts commit 98cab91631692b55ba72231126f612d6b4d4d662.

As Dan rightly suspected, it made pop3 sad :/
This commit is contained in:
Jesse Vincent 2010-07-13 21:16:49 +00:00
parent 8ab165ef31
commit a85c83f696

View File

@ -29,10 +29,10 @@ public abstract class Message implements Part, Body
{ {
return false; return false;
} }
Date myDate = getInternalDate(); Date myDate = getSentDate();
if (myDate == null) if (myDate == null)
{ {
myDate = getSentDate(); myDate = getInternalDate();
} }
if (myDate != null) if (myDate != null)
{ {