aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-05-08 23:02:19 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2018-05-08 23:02:19 +0200
commitd607e7b9241ad672270caffc51d4d99952cbf7f2 (patch)
treef2b6d5b99b20f1db0b5cce09d3c52eed1e59890b /core
parent4327eea121fece7b23cd5a727724e76eab80ced0 (diff)
downloadnextcloud-server-d607e7b9241ad672270caffc51d4d99952cbf7f2.tar.gz
nextcloud-server-d607e7b9241ad672270caffc51d4d99952cbf7f2.zip
Move the webui over to the new dav endpoint
We should use the new dav endpoint everywhere now. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'core')
-rw-r--r--core/js/files/client.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/files/client.js b/core/js/files/client.js
index e16facbde07..7e0e136989a 100644
--- a/core/js/files/client.js
+++ b/core/js/files/client.js
@@ -932,7 +932,7 @@
var client = new OC.Files.Client({
host: OC.getHost(),
port: OC.getPort(),
- root: OC.linkToRemoteBase('webdav'),
+ root: OC.linkToRemoteBase('dav') + '/files/' + OC.getCurrentUser().uid,
useHTTPS: OC.getProtocol() === 'https'
});
OC.Files._defaultClient = client;