diff options
author | Christian Schneppe <christian@pix-art.de> | 2019-06-08 14:09:40 +0200 |
---|---|---|
committer | Christian Schneppe <christian@pix-art.de> | 2019-06-08 14:09:40 +0200 |
commit | 2ff5449dcdb9c8cd45775d7582f2faa90458cb57 (patch) | |
tree | 5f1c47019e0a59f09d04031739a7a3f135068654 /src | |
parent | 7bf57cf746bf992c9f430145f8d2ce8a58c7c488 (diff) |
set own omemo devices to inactive after 60 days of inactivity
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/de/pixart/messenger/Config.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/de/pixart/messenger/Config.java b/src/main/java/de/pixart/messenger/Config.java index 19b40c09f..5f5eb68f8 100644 --- a/src/main/java/de/pixart/messenger/Config.java +++ b/src/main/java/de/pixart/messenger/Config.java @@ -105,7 +105,7 @@ public final class Config { public static final int REFRESH_UI_INTERVAL = 500; - public static final long OMEMO_AUTO_EXPIRY = 14 * MILLISECONDS_IN_DAY; // delete old OMEMO devices after 14 days of inactivity + public static final long OMEMO_AUTO_EXPIRY = 60 * MILLISECONDS_IN_DAY; // delete old OMEMO devices after 60 days of inactivity 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; |