Skip to content

Commit d1e54a9

Browse files
committed
Fix another url for etag request
Fixes: #7838
1 parent 71210e3 commit d1e54a9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

changelog/unreleased/7838

+3
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ as a delete and upload.
55

66
https://github.com/owncloud/client/issues/7838
77
https://github.com/owncloud/enterprise/issues/4428
8+
https://github.com/owncloud/client/pull/8453
9+
https://github.com/owncloud/client/pull/8456
10+
https://github.com/owncloud/client/pull/8459

src/libsync/discovery.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ void ProcessDirectoryJob::processFileAnalyzeRemoteInfo(
595595
} else {
596596
// we need to make a request to the server to know that the original file is deleted on the server
597597
_pendingAsyncJobs++;
598-
auto job = new RequestEtagJob(_discoveryData->_account, originalPath, this);
598+
auto job = new RequestEtagJob(_discoveryData->_account, _discoveryData->_remoteFolder + originalPath, this);
599599
connect(job, &RequestEtagJob::finishedWithResult, this, [=](const HttpResult<QString> &etag) {
600600
auto tmp_path = path;
601601
_pendingAsyncJobs--;

0 commit comments

Comments
 (0)