mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-07 17:43:18 +02:00
Small fix
This commit is contained in:
@@ -183,9 +183,9 @@ public class MessageHelper {
|
||||
static final int MAX_UNZIP_COUNT = 20;
|
||||
static final long MAX_UNZIP_SIZE = 1000 * 1000 * 1000L;
|
||||
|
||||
static final List<String> UNZIP_FORMATS = BuildConfig.PLAY_STORE_RELEASE
|
||||
? Collections.unmodifiableList(Arrays.asList("zip"))
|
||||
: Collections.unmodifiableList(Arrays.asList("zip, gz, tar.gz"));
|
||||
static final List<String> UNZIP_FORMATS = Collections.unmodifiableList(Arrays.asList(
|
||||
"zip", "gz", "tar.gz"
|
||||
));
|
||||
|
||||
static final List<String> RECEIVED_WORDS = Collections.unmodifiableList(Arrays.asList(
|
||||
"from", "by", "via", "with", "id", "for"
|
||||
|
||||
Reference in New Issue
Block a user