Skip to content

Commit

Permalink
Merge pull request #1700 from ro0NL/patch-1
Browse files Browse the repository at this point in the history
[WebDAV] Fix getting individual file attributes
  • Loading branch information
frankdejonge authored Sep 7, 2023
2 parents 06b1360 + a1ad47c commit 1d5c841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WebDAV/WebDAVAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
Expand Down

0 comments on commit 1d5c841

Please sign in to comment.