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
1 changed files with 2 additions and 2 deletions
|
@ -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 a new issue