mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 01:00:50 -04:00
Merge pull request #61079 from nextcloud/backport/61057/stable33
[stable33] fix(dav): properly handle files metadata
This commit is contained in:
commit
7b6ca3c6fd
1 changed files with 1 additions and 1 deletions
|
|
@ -461,7 +461,7 @@ class FilesPlugin extends ServerPlugin {
|
|||
});
|
||||
|
||||
foreach ($node->getFileInfo()->getMetadata() as $metadataKey => $metadataValue) {
|
||||
$propFind->handle(self::FILE_METADATA_PREFIX . $metadataKey, $metadataValue);
|
||||
$propFind->handle(self::FILE_METADATA_PREFIX . $metadataKey, fn () => $metadataValue);
|
||||
}
|
||||
|
||||
$propFind->handle(self::HIDDEN_PROPERTYNAME, function () use ($node) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue