mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
Merge pull request #61080 from nextcloud/backport/61057/stable32
[stable32] fix(dav): properly handle files metadata
This commit is contained in:
commit
8686a008fc
1 changed files with 1 additions and 1 deletions
|
|
@ -450,7 +450,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