From d607e7b9241ad672270caffc51d4d99952cbf7f2 Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Tue, 8 May 2018 23:02:19 +0200 Subject: [PATCH] Move the webui over to the new dav endpoint We should use the new dav endpoint everywhere now. Signed-off-by: Roeland Jago Douma --- core/js/files/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/files/client.js b/core/js/files/client.js index e16facbde0..7e0e136989 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;