mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-15 18:21:35 +03:00
parallel chunk upload: allow "true" for the value of OWNCLOUD_PARALLEL_CHUNK
This commit is contained in:
parent
1b62ed1e7e
commit
7c36e5c0e6
1 changed files with 2 additions and 1 deletions
|
@ -326,7 +326,8 @@ void PropagateUploadFileQNAM::startNextChunk()
|
|||
_propagator->_activeJobs++;
|
||||
_currentChunk++;
|
||||
|
||||
bool parallelChunkUpload = qgetenv("OWNCLOUD_PARALLEL_CHUNK").toInt() > 0;
|
||||
QByteArray env = qgetenv("OWNCLOUD_PARALLEL_CHUNK");
|
||||
bool parallelChunkUpload = env=="true" || env =="1";;
|
||||
if (_currentChunk + _startChunk >= _chunkCount - 1) {
|
||||
// Don't do parallel upload of chunk if this might be the last chunk because the server cannot handle that
|
||||
// https://github.com/owncloud/core/issues/11106
|
||||
|
|
Loading…
Reference in a new issue