1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04: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;
}
Date myDate = getInternalDate();
Date myDate = getSentDate();
if (myDate == null)
{
myDate = getSentDate();
myDate = getInternalDate();
}
if (myDate != null)
{