mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-02 00:25:10 -04:00
When deciding whether a message is older than a certain date, we should
be prefering the date we can ~trust "Internal" to the date asserted by the sender.
This commit is contained in:
parent
ee63564138
commit
52ff331771
@ -29,10 +29,10 @@ public abstract class Message implements Part, Body
|
||||
{
|
||||
return false;
|
||||
}
|
||||
Date myDate = getSentDate();
|
||||
Date myDate = getInternalDate();
|
||||
if (myDate == null)
|
||||
{
|
||||
myDate = getInternalDate();
|
||||
myDate = getSentDate();
|
||||
}
|
||||
if (myDate != null)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user