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

Compare commits

...

2 Commits

Author SHA1 Message Date
Abel García de Prada
6e919b8062
Merge pull request #508 from owncloud/new_arch/chunks_bugfixing
[New arch] Chunking bugfixing
2022-09-30 08:39:10 +02:00
Juan Carlos Garrote
c1d88584b1 Increased the chunk size to 10 MB 2022-09-28 13:23:58 +02:00

View File

@ -116,7 +116,7 @@ class ChunkedUploadFromFileSystemOperation(
} }
companion object { 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. private const val LAST_CHUNK_TIMEOUT = 900_000 // 15 mins.
} }
} }