diff --git a/src/libsync/discoveryphase.cpp b/src/libsync/discoveryphase.cpp index e15195558b..9f85978f7a 100644 --- a/src/libsync/discoveryphase.cpp +++ b/src/libsync/discoveryphase.cpp @@ -84,7 +84,7 @@ bool DiscoveryJob::checkSelectiveSyncNewFolder(const QString& path) } auto limit = _newBigFolderSizeLimit; - if (result > limit) { + if (result >= limit) { // we tell the UI there is a new folder emit newBigFolder(path); return true;