extend omemo auto expiry to 42 days (6 weeks)

closes #3584
This commit is contained in:
Daniel Gultsch 2019-12-29 15:34:02 +01:00
parent ed4a73e1c7
commit 2b375877eb
1 changed files with 3 additions and 1 deletions

View File

@ -94,7 +94,9 @@ public final class Config {
public static final long MILLISECONDS_IN_DAY = 24 * 60 * 60 * 1000;
public static final long OMEMO_AUTO_EXPIRY = 14 * MILLISECONDS_IN_DAY;
//remove *other* omemo devices from *your* device list announcement after not seeing any activity from them for 42 days. They will automatically add themselves after coming back online.
public static final long OMEMO_AUTO_EXPIRY = 42 * MILLISECONDS_IN_DAY;
public static final boolean REMOVE_BROKEN_DEVICES = false;
public static final boolean OMEMO_PADDING = false;
public static final boolean PUT_AUTH_TAG_INTO_KEY = true;