From 745cf55abb3eeea81e2469ea951fbe53999f370e Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Thu, 15 Oct 2015 14:30:23 +0200 Subject: [PATCH] SelectiveSync: Increase folder list timeout to 60 Already done for 2.1 in 05eee16959ab7cc485bee9c273392b84ba57eae8 For #3524 --- src/gui/folderstatusmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/folderstatusmodel.cpp b/src/gui/folderstatusmodel.cpp index 9b9dbff1b8..dc451d3a0c 100644 --- a/src/gui/folderstatusmodel.cpp +++ b/src/gui/folderstatusmodel.cpp @@ -477,7 +477,7 @@ void FolderStatusModel::fetchMore(const QModelIndex& parent) } LsColJob *job = new LsColJob(_accountState->account(), path, this); job->setProperties(QList() << "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*)),