From da178c1352240fb5c72984549416ad7dff74e0f6 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Thu, 1 Nov 2018 12:25:12 +0100 Subject: [PATCH] Folder: Treat file unlock similar to external change #6822 For consistent handling of incoming notifications. --- src/gui/folderman.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/folderman.cpp b/src/gui/folderman.cpp index a06267258..5a3a5fbf6 100644 --- a/src/gui/folderman.cpp +++ b/src/gui/folderman.cpp @@ -882,7 +882,8 @@ void FolderMan::slotServerVersionChanged(Account *account) void FolderMan::slotWatchedFileUnlocked(const QString &path) { if (Folder *f = folderForPath(path)) { - f->scheduleThisFolderSoon(); + // Treat this equivalently to the file being reported by the file watcher + f->slotWatchedPathChanged(path); } } -- 2.30.2