mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 17:57:16 +00:00
Reduce large message size to 200 KiB
This commit is contained in:
parent
43a18d3cf6
commit
22121806f1
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
private static final ExecutorService executor =
|
||||
Helper.getBackgroundExecutor(2, "differ");
|
||||
|
||||
private static final int LARGE_MESSAGE_SIZE = 250 * 1024;
|
||||
private static final int LARGE_MESSAGE_SIZE = 200 * 1024;
|
||||
|
||||
// https://github.com/newhouse/url-tracking-stripper
|
||||
private static final List<String> PARANOID_QUERY = Collections.unmodifiableList(Arrays.asList(
|
||||
|
|
Loading…
Reference in a new issue