Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2022-01-12 13:28:23 +0300
committerHannah von Reth <vonreth@kde.org>2022-01-12 13:54:30 +0300
commitb5e4b562fb0cbcde1f62f81fbcbd4c052dda0f85 (patch)
tree3cbd68cfda9c95533b38536fc8769d2cc8b28cf7 /src/libsync
parentb3f797c493f2b8bf4f5ac45059fb9c479cb56879 (diff)
Don't set origin file of moves to in sync
Diffstat (limited to 'src/libsync')
-rw-r--r--src/libsync/syncfilestatustracker.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsync/syncfilestatustracker.cpp b/src/libsync/syncfilestatustracker.cpp
index 8331803a1..1a1cd93c0 100644
--- a/src/libsync/syncfilestatustracker.cpp
+++ b/src/libsync/syncfilestatustracker.cpp
@@ -214,6 +214,7 @@ void SyncFileStatusTracker::slotAboutToPropagate(const SyncFileItemSet &items)
for (const auto &item : qAsConst(items)) {
qCDebug(lcStatusTracker) << "Investigating" << item->destination() << item->_status << item->_instruction;
_dirtyPaths.remove(item->destination());
+ _dirtyPaths.remove(item->_originalFile);
if (hasErrorStatus(*item)) {
_syncProblems[item->destination()] = SyncFileStatus::StatusError;