From 0638f99b79c5ff5d9e7e491e8ba8b7cbec4b1237 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Tue, 18 Aug 2015 12:25:55 +0200 Subject: [PATCH] Selective Sync dialog: add the quota-used-bytes to the request Mentioned in https://github.com/owncloud/client/issues/3524#issuecomment-132144532 --- src/gui/selectivesyncdialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/selectivesyncdialog.cpp b/src/gui/selectivesyncdialog.cpp index 251b1c1a2..fad1b3a2e 100644 --- a/src/gui/selectivesyncdialog.cpp +++ b/src/gui/selectivesyncdialog.cpp @@ -229,6 +229,7 @@ void SelectiveSyncTreeView::slotItemExpanded(QTreeWidgetItem *item) prefix = _folderPath + QLatin1Char('/'); } LsColJob *job = new LsColJob(_account, prefix + dir, this); + job->setProperties(QList() << "resourcetype" << "quota-used-bytes"); connect(job, SIGNAL(directoryListingSubfolders(QStringList)), SLOT(slotUpdateDirectories(QStringList))); job->start(); -- 2.30.2