Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-04-15 11:14:05 +0300
committerRoeland Jago Douma <rullzer@owncloud.com>2016-04-15 11:14:05 +0300
commit74301e4373b2c5bfed2d147516da2a759c700626 (patch)
treea9b46a87808d730307a836e2095289239ffe1cbc /src/gui/sharedialog.cpp
parent053dcbf1f5337dbdc531d7cc386349d5286e3bf3 (diff)
The share-permissions namespace was moved
See https://github.com/owncloud/core/pull/24017 This was done since other services we want to intergrate with don't use the ownCloud namespace.
Diffstat (limited to 'src/gui/sharedialog.cpp')
-rw-r--r--src/gui/sharedialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/sharedialog.cpp b/src/gui/sharedialog.cpp
index 870499370..00b4e2709 100644
--- a/src/gui/sharedialog.cpp
+++ b/src/gui/sharedialog.cpp
@@ -116,7 +116,7 @@ ShareDialog::ShareDialog(QPointer<AccountState> accountState,
// Server versions >= 9.1 support the "share-permissions" property
// older versions will just return share-permissions: ""
auto job = new PropfindJob(accountState->account(), _sharePath);
- job->setProperties(QList<QByteArray>() << "http://owncloud.org/ns:share-permissions");
+ job->setProperties(QList<QByteArray>() << "http://open-collaboration-services.org/ns::share-permissions");
job->setTimeout(10 * 1000);
connect(job, SIGNAL(result(QVariantMap)), SLOT(slotMaxSharingPermissionsReceived(QVariantMap)));
connect(job, SIGNAL(finishedWithError(QNetworkReply*)), SLOT(slotMaxSharingPermissionsError()));