mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-29 12:19:03 +03:00
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:
commit
46964b1b87
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue