We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbbd49a commit 15c90c2Copy full SHA for 15c90c2
src/libsync/propagateuploadv1.cpp
@@ -102,6 +102,10 @@ void PropagateUploadFileV1::startNextChunk()
102
103
QString path = _fileToUpload._file;
104
105
+ if (_item->_locked == SyncFileItem::LockStatus::LockedItem) {
106
+ headers[QByteArrayLiteral("If")] = (QLatin1String("<") + propagator()->account()->davUrl().toString() + _fileToUpload._file + "> (<opaquelocktoken:" + _item->_lockToken.toUtf8() + ">)").toUtf8();
107
+ }
108
+
109
qint64 chunkStart = 0;
110
qint64 currentChunkSize = fileSize;
111
bool isFinalChunk = false;
0 commit comments