Cut down size of message we are willing to store

(cherry picked from commit 22397ca4828e7b780d3359f33842441a2ed534c7)
This commit is contained in:
Stephen Paul Weber 2024-11-19 15:19:28 -05:00 committed by Arne
parent a2339e15a0
commit 280a9e8eb9

View file

@ -109,7 +109,7 @@ public final class Config {
public static final int REFRESH_UI_INTERVAL = 500;
public static final int MAX_DISPLAY_MESSAGE_CHARS = 10000;
public static final int MAX_STORAGE_MESSAGE_CHARS = 2 * 1024 * 1024; //2MB
public static final int MAX_STORAGE_MESSAGE_CHARS = 1 * 1024 * 1024; //1MB
public static final long MILLISECONDS_IN_DAY = 24 * 60 * 60 * 1000;