Skip to content
Snippets Groups Projects
Commit 4b943a48 authored by Vincent Petry's avatar Vincent Petry
Browse files

Fix root path handling for WebDAV ext storage

Added missing cleanPath() call that converts "/" to "" when calling
SabreDAV. This is needed because SabreDAV will discard its base URL when
passing "/".
parent 9368de5a
No related branches found
No related tags found
No related merge requests found
...@@ -433,6 +433,7 @@ class DAV extends \OC\Files\Storage\Common { ...@@ -433,6 +433,7 @@ class DAV extends \OC\Files\Storage\Common {
public function getPermissions($path) { public function getPermissions($path) {
$this->init(); $this->init();
$path = $this->cleanPath($path);
$response = $this->client->propfind($this->encodePath($path), array('{http://owncloud.org/ns}permissions')); $response = $this->client->propfind($this->encodePath($path), array('{http://owncloud.org/ns}permissions'));
if (isset($response['{http://owncloud.org/ns}permissions'])) { if (isset($response['{http://owncloud.org/ns}permissions'])) {
return $this->parsePermissions($response['{http://owncloud.org/ns}permissions']); return $this->parsePermissions($response['{http://owncloud.org/ns}permissions']);
...@@ -477,6 +478,7 @@ class DAV extends \OC\Files\Storage\Common { ...@@ -477,6 +478,7 @@ class DAV extends \OC\Files\Storage\Common {
*/ */
public function hasUpdated($path, $time) { public function hasUpdated($path, $time) {
$this->init(); $this->init();
$path = $this->cleanPath($path);
try { try {
$response = $this->client->propfind($this->encodePath($path), array( $response = $this->client->propfind($this->encodePath($path), array(
'{DAV:}getlastmodified', '{DAV:}getlastmodified',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment