mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-26 02:45:31 +01:00
Small fix
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user