1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-02 22:49:09 +02:00

Mobile: Increase max resource size to 100mb (#3431)

This commit is contained in:
Roman Musin
2020-07-15 18:29:16 +01:00
committed by GitHub
parent 10ff43f4f0
commit 3807317e66

View File

@@ -69,7 +69,7 @@ class Synchronizer {
maxResourceSize() {
if (this.maxResourceSize_ !== null) return this.maxResourceSize_;
return this.appType_ === 'mobile' ? 10 * 1000 * 1000 : Infinity;
return this.appType_ === 'mobile' ? 100 * 1000 * 1000 : Infinity;
}
setEncryptionService(v) {