[Pkg-owncloud-commits] [owncloud-client] 381/498: Confirm feature: default to 500MB

Sandro Knauß hefee-guest at moszumanska.debian.org
Tue Aug 11 14:49:08 UTC 2015


This is an automated email from the git hooks/post-receive script.

hefee-guest pushed a commit to branch master
in repository owncloud-client.

commit 45b598cacbfcc7e0da04bacb408688bf0a16b294
Author: Olivier Goffart <ogoffart at woboq.com>
Date:   Mon Jul 27 10:04:53 2015 +0200

    Confirm feature:  default to 500MB
    
    Issue #3148
---
 src/libsync/configfile.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libsync/configfile.cpp b/src/libsync/configfile.cpp
index 207858e..4d802ce 100644
--- a/src/libsync/configfile.cpp
+++ b/src/libsync/configfile.cpp
@@ -573,7 +573,7 @@ void ConfigFile::setDownloadLimit(int kbytes)
 
 QPair<bool, quint64> ConfigFile::newBigFolderSizeLimit() const
 {
-    qint64 value = getValue(newBigFolderSizeLimitC, QString(), 100).toLongLong();
+    qint64 value = getValue(newBigFolderSizeLimitC, QString(), 500).toLongLong(); // Default to 500MB
     bool use = value >= 0 && getValue(useNewBigFolderSizeLimitC, QString(), true).toBool();
     return qMakePair(use, quint64(qMax<qint64>(0, value)));
 }

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git



More information about the Pkg-owncloud-commits mailing list