projects
/
nextcloud-desktop.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bee1b0e
)
Fix big-folder detection when vfs is disabled
author
Christian Kamm
<mail@ckamm.de>
Mon, 12 Nov 2018 10:27:09 +0000
(11:27 +0100)
committer
Kevin Ottens
<kevin.ottens@nextcloud.com>
Tue, 15 Dec 2020 09:58:22 +0000
(10:58 +0100)
src/libsync/discoveryphase.cpp
patch
|
blob
|
history
diff --git
a/src/libsync/discoveryphase.cpp
b/src/libsync/discoveryphase.cpp
index 8d3b7c5157f0ca7af4308b45ba8fb2a7942de55f..e845c352d76deb65e0443bc494bf97f401dd47e7 100644
(file)
--- a/
src/libsync/discoveryphase.cpp
+++ b/
src/libsync/discoveryphase.cpp
@@
-100,7
+100,7
@@
void DiscoveryPhase::checkSelectiveSyncNewFolder(const QString &path, RemotePerm
}
auto limit = _syncOptions._newBigFolderSizeLimit;
- if (limit < 0 ||
!
_syncOptions._vfs) {
+ if (limit < 0 || _syncOptions._vfs) {
// no limit, everything is allowed;
return callback(false);
}