aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorGit'Fellow <12234510+solracsf@users.noreply.github.com>2023-06-23 20:08:08 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2023-07-10 18:31:45 +0200
commit61cd250935178270e3286ce71fffcdb062a10d2b (patch)
tree08b5ed1b7da8bfca3f78131e9d54f92e1cd7d693 /lib
parent98ec2f023ffa2fe7d2813768d3e4aa9bb4f10f39 (diff)
downloadnextcloud-server-61cd250935178270e3286ce71fffcdb062a10d2b.tar.gz
nextcloud-server-61cd250935178270e3286ce71fffcdb062a10d2b.zip
Include PR #38965
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Files/Storage/DAV.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Files/Storage/DAV.php b/lib/private/Files/Storage/DAV.php
index bb1d2ec6efd..76e825f5124 100644
--- a/lib/private/Files/Storage/DAV.php
+++ b/lib/private/Files/Storage/DAV.php
@@ -923,6 +923,7 @@ class DAV extends Common {
foreach ($responses as $file => $response) {
$file = urldecode($file);
$file = substr($file, strlen($this->root));
+ $file = $this->cleanPath($file);
$this->statCache->set($file, $response);
yield $this->getMetaFromPropfind($file, $response);
}