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-22 15:38:43 +0300
committerRoeland Jago Douma <rullzer@owncloud.com>2016-04-22 15:38:43 +0300
commitd3a93322d2d70d280a132599a2576480f627fd31 (patch)
treee3494435a63b88f309ef5fa686baf1889093de3a /src/gui/sharedialog.cpp
parent8694db1c4995d12c15cf8a33455dfc7511e890c4 (diff)
Only 1 : between namespace and property
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 00b4e2709..1b2e744e5 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://open-collaboration-services.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()));