forked from mirror/monocles_chat_clean
Cut down size of message we are willing to store
(cherry picked from commit 22397ca4828e7b780d3359f33842441a2ed534c7)
This commit is contained in:
parent
a2339e15a0
commit
280a9e8eb9
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue