1
0
Fork 0
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:
M66B 2024-07-15 17:41:25 +02:00
parent c43dbbd294
commit 766c3df69b

View file

@ -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();