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
1 changed files with 1 additions and 1 deletions

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