1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-26 09:47:13 +00:00

Small fix

This commit is contained in:
M66B 2023-03-21 12:03:16 +01:00
parent d6f28bb5b4
commit 4fddb571f1

View file

@ -98,6 +98,8 @@ public class EntityContact implements Serializable {
@NonNull
public Integer state = STATE_DEFAULT;
private static int MAX_AGE = EntityFolder.DEFAULT_KEEP;
static void received(
@NonNull Context context,
@NonNull EntityAccount account,
@ -105,8 +107,8 @@ public class EntityContact implements Serializable {
@NonNull EntityMessage message) {
if (account.protocol == EntityAccount.TYPE_IMAP) {
int days = (folder.isOutgoing() ? folder.keep_days : folder.sync_days);
if (days == Integer.MAX_VALUE)
days = EntityFolder.DEFAULT_KEEP;
if (days > MAX_AGE)
days = MAX_AGE;
if (message.received < account.created - days * 24 * 3600 * 1000L)
return;
}