From a1ad47cd8e704618b9187bc597c22b3e9600bc3b Mon Sep 17 00:00:00 2001 From: "Roland Franssen :)" Date: Thu, 7 Sep 2023 11:33:03 +0200 Subject: [PATCH] [WebDAV] Fix getting individual file attriubutes --- src/WebDAV/WebDAVAdapter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WebDAV/WebDAVAdapter.php b/src/WebDAV/WebDAVAdapter.php index 0f533caa7..cde5a7c39 100644 --- a/src/WebDAV/WebDAVAdapter.php +++ b/src/WebDAV/WebDAVAdapter.php @@ -428,7 +428,7 @@ private function createParentDirFor(string $path): void private function propFind(string $path, string $section, string $property): mixed { - $location = $this->prefixer->prefixPath($path); + $location = $this->encodePath($this->prefixer->prefixPath($path)); try { $result = $this->client->propFind($location, [$property]);