SelectiveSync: Increase folder list timeout to 60

Already done for 2.1 in 05eee16959
For #3524
This commit is contained in:
Markus Goetz 2015-10-15 14:30:23 +02:00
parent e1c634d000
commit 745cf55abb

View file

@ -477,7 +477,7 @@ void FolderStatusModel::fetchMore(const QModelIndex& parent)
}
LsColJob *job = new LsColJob(_accountState->account(), path, this);
job->setProperties(QList<QByteArray>() << "resourcetype" << "quota-used-bytes");
job->setTimeout(5 * 1000);
job->setTimeout(60 * 1000);
connect(job, SIGNAL(directoryListingSubfolders(QStringList)),
SLOT(slotUpdateDirectories(QStringList)));
connect(job, SIGNAL(finishedWithError(QNetworkReply*)),