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
path: root/src
diff options
context:
space:
mode:
authorChristian Kamm <kamm@incasoftware.de>2015-04-10 10:24:25 +0300
committerChristian Kamm <kamm@incasoftware.de>2015-04-10 10:24:25 +0300
commit57ac1d9ea2688d3f362b23b0e8bfb0e2b19ac7b4 (patch)
treeff0d137da3480fc262d1c980766ebbb6fa08c9ea /src
parentd9ea6936ab83b88f4bd3f93734119fdeb6018725 (diff)
AuthRedirect: Use the configured DAV path. #3082
Diffstat (limited to 'src')
-rw-r--r--src/gui/owncloudsetupwizard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/owncloudsetupwizard.cpp b/src/gui/owncloudsetupwizard.cpp
index 4b06f2f1f..e5759b94a 100644
--- a/src/gui/owncloudsetupwizard.cpp
+++ b/src/gui/owncloudsetupwizard.cpp
@@ -241,7 +241,7 @@ void OwncloudSetupWizard::slotAuthError()
// strip the expected path
QString path = redirectUrl.path();
- static QString expectedPath = "/remote.php/webdav/";
+ static QString expectedPath = "/" + _ocWizard->account()->davPath();
if (path.endsWith(expectedPath)) {
path.chop(expectedPath.size());
redirectUrl.setPath(path);