mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-01 01:06:11 +00:00
Always use date header for sent messages
This commit is contained in:
parent
c43dbbd294
commit
766c3df69b
1 changed files with 1 additions and 1 deletions
|
@ -4583,7 +4583,7 @@ class Core {
|
|||
|
||||
Long received;
|
||||
long future = new Date().getTime() + FUTURE_RECEIVED;
|
||||
if (account.use_date) {
|
||||
if (account.use_date || EntityFolder.SENT.equals(folder.type)) {
|
||||
received = sent;
|
||||
if (received == null || received == 0 || received > future)
|
||||
received = helper.getReceived();
|
||||
|
|
Loading…
Reference in a new issue