aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-06-22 15:02:20 +0200
committerGitHub <noreply@github.com>2018-06-22 15:02:20 +0200
commit082646f7e542a02c4a18a49b070a578069e209a6 (patch)
tree6a07ce53ec0f3fc6473928aaccf86c2221b5dea3 /lib
parent144d1aa29daac325af4b3bf2deb8d0bb27e3b6a7 (diff)
parent54c4d95a111531fce3775743b381c610a4a7c599 (diff)
downloadnextcloud-server-082646f7e542a02c4a18a49b070a578069e209a6.tar.gz
nextcloud-server-082646f7e542a02c4a18a49b070a578069e209a6.zip
Merge pull request #9955 from nextcloud/bug/noid/onedrive_propfind
Request a valid property for DAV opendir
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Files/Storage/DAV.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Storage/DAV.php b/lib/private/Files/Storage/DAV.php
index 1ce7b8acd45..b5537b65747 100644
--- a/lib/private/Files/Storage/DAV.php
+++ b/lib/private/Files/Storage/DAV.php
@@ -206,7 +206,7 @@ class DAV extends Common {
try {
$response = $this->client->propFind(
$this->encodePath($path),
- ['{DAV:}href'],
+ ['{DAV:}getetag'],
1
);
if ($response === false) {