handle non existing owners when handling dav requests

Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/3681/head
Robin Appelman 9 years ago
parent aecec74a04
commit 8f289286a7
No known key found for this signature in database
GPG Key ID: CBCA68FBAEBF98C9
  1. 13
      apps/dav/lib/Connector/Sabre/FilesPlugin.php

@ -317,12 +317,19 @@ class FilesPlugin extends ServerPlugin {
$propFind->handle(self::OWNER_ID_PROPERTYNAME, function() use ($node) {
$owner = $node->getOwner();
return $owner->getUID();
if (!$owner) {
return null;
} else {
return $owner->getUID();
}
});
$propFind->handle(self::OWNER_DISPLAY_NAME_PROPERTYNAME, function() use ($node) {
$owner = $node->getOwner();
$displayName = $owner->getDisplayName();
return $displayName;
if (!$owner) {
return null;
} else {
return $owner->getDisplayName();
}
});
$propFind->handle(self::HAS_PREVIEW_PROPERTYNAME, function () use ($node) {

Loading…
Cancel
Save