Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2018-07-11 10:42:20 +0300
committerGitHub <noreply@github.com>2018-07-11 10:42:20 +0300
commitc99529834ce4e840b4905c17e84457d23a0d1413 (patch)
tree02b8f39d4845b03a79b5c34a8101b2c282846f28 /lib
parent922c2c64b5d9a9f9ba8d7aa1f7c79a788875b7d6 (diff)
parentd03b389b56eb6eb003ab108d8a4972e1ec01a8f0 (diff)
Merge pull request #10169 from nextcloud/backport/9955/stable13
[stable13] 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 8019c4c0758..e6efb68674a 100644
--- a/lib/private/Files/Storage/DAV.php
+++ b/lib/private/Files/Storage/DAV.php
@@ -209,7 +209,7 @@ class DAV extends Common {
try {
$response = $this->client->propFind(
$this->encodePath($path),
- ['{DAV:}href'],
+ ['{DAV:}getetag'],
1
);
if ($response === false) {