mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 21:46:03 +03:00
Default to no limit upload
We don't want to make the transfer slow by default
This commit is contained in:
parent
31ceff181e
commit
4be5f970d5
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue