1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-07 16:06:08 +00:00

Merge pull request #508 from owncloud/new_arch/chunks_bugfixing

[New arch] Chunking bugfixing
This commit is contained in:
Abel García de Prada 2022-09-30 08:39:10 +02:00 committed by GitHub
commit 6e919b8062
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -116,7 +116,7 @@ class ChunkedUploadFromFileSystemOperation(
}
companion object {
const val CHUNK_SIZE = 1_024_000L
const val CHUNK_SIZE = 10_240_000L // 10 MB
private const val LAST_CHUNK_TIMEOUT = 900_000 // 15 mins.
}
}