Default to no limit upload

We don't want to make the transfer slow by default
This commit is contained in:
Olivier Goffart 2013-08-22 12:26:34 +02:00
parent 31ceff181e
commit 4be5f970d5

View file

@ -595,7 +595,7 @@ QString MirallConfigFile::proxyPassword() const
int MirallConfigFile::useUploadLimit() const
{
return getValue(useUploadLimitC, QString::null, -1).toInt();
return getValue(useUploadLimitC, QString::null, 0).toInt();
}
bool MirallConfigFile::useDownloadLimit() const