Android is growing up a bit. artificially limiting the user to
attachments of only 5MB is counter-productive, bump the artificial limit to 128M
This commit is contained in:
parent
6ef923be91
commit
f7032c4161
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ public class K9 extends Application
|
|||
* so we should probably factor that in. A 5MB attachment will generally be around
|
||||
* 6.8MB downloaded but only 5MB saved.
|
||||
*/
|
||||
public static final int MAX_ATTACHMENT_DOWNLOAD_SIZE = (5 * 1024 * 1024);
|
||||
public static final int MAX_ATTACHMENT_DOWNLOAD_SIZE = (128 * 1024 * 1024);
|
||||
|
||||
/**
|
||||
* Max time (in millis) the wake lock will be held for when background sync is happening
|
||||
|
|
Loading…
Reference in a new issue