Skip to content

Commit

Permalink
Always use date header for sent messages
Browse files Browse the repository at this point in the history
  • Loading branch information
M66B committed Jul 15, 2024
1 parent c43dbbd commit 766c3df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/eu/faircode/email/Core.java
Original file line number Diff line number Diff line change
Expand Up @@ -4583,7 +4583,7 @@ static EntityMessage synchronizeMessage(

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

0 comments on commit 766c3df

Please sign in to comment.