From 6c1073db92f3830c0f9b84d198ae283915c4e3cf Mon Sep 17 00:00:00 2001 From: Hannah von Reth Date: Fri, 26 Feb 2021 12:02:06 +0100 Subject: [PATCH] Fix another url for etag request Fixes: #7838 --- src/libsync/discovery.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsync/discovery.cpp b/src/libsync/discovery.cpp index 45bcf96a1..8272ab249 100644 --- a/src/libsync/discovery.cpp +++ b/src/libsync/discovery.cpp @@ -696,7 +696,7 @@ void ProcessDirectoryJob::processFileAnalyzeRemoteInfo( } else { // we need to make a request to the server to know that the original file is deleted on the server _pendingAsyncJobs++; - auto job = new RequestEtagJob(_discoveryData->_account, originalPath, this); + auto job = new RequestEtagJob(_discoveryData->_account, _discoveryData->_remoteFolder + originalPath, this); connect(job, &RequestEtagJob::finishedWithResult, this, [=](const HttpResult &etag) mutable { _pendingAsyncJobs--; QTimer::singleShot(0, _discoveryData, &DiscoveryPhase::scheduleMoreJobs); -- 2.30.2