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:
authorDaniel Molkentin <danimo@owncloud.com>2014-09-17 01:53:01 +0400
committerDaniel Molkentin <danimo@owncloud.com>2014-09-17 01:53:01 +0400
commitb72cee2783efb638416268bdc9c7bfb7afd52eee (patch)
treecf75ea1a38b0249061a14189f1a1e42dc0124ee3 /src/owncloudcmd
parentfe023e2229dedbc646ab7e701ecd1a457dadef16 (diff)
Fix passing URLs not ending in /remote.php/webdav
Diffstat (limited to 'src/owncloudcmd')
-rw-r--r--src/owncloudcmd/owncloudcmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/owncloudcmd/owncloudcmd.cpp b/src/owncloudcmd/owncloudcmd.cpp
index bfdcae637..a7c649abe 100644
--- a/src/owncloudcmd/owncloudcmd.cpp
+++ b/src/owncloudcmd/owncloudcmd.cpp
@@ -149,7 +149,7 @@ void parseOptions( const QStringList& app_args, CmdOptions *options )
if(!options->target_url.endsWith("/")) {
options->target_url.append("/");
}
- options->target_url.append("remote.php/webdav/");
+ options->target_url.append("remote.php/webdav");
}
if (options->target_url.startsWith("http"))
options->target_url.replace(0, 4, "owncloud");