Merge pull request #3549 from phil-davis/patch-1

Notify of big folders that are greater than or equal to the limit
This commit is contained in:
Olivier Goffart 2015-08-04 16:07:18 +02:00
commit 46964b1b87

View file

@ -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;