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

Increased the chunk size to 10 MB

This commit is contained in:
Juan Carlos Garrote 2022-09-28 13:23:58 +02:00 committed by Abel García de Prada
parent 959cb7b015
commit 2b27b9657c

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.
}
}