diff --git a/Classes/ContentRepository/NodeTranslationService.php b/Classes/ContentRepository/NodeTranslationService.php index 51e37d4..cfcc0ff 100644 --- a/Classes/ContentRepository/NodeTranslationService.php +++ b/Classes/ContentRepository/NodeTranslationService.php @@ -190,7 +190,8 @@ public function translateNode(NodeInterface $sourceNode, NodeInterface $targetNo return; } - $properties = (array)$sourceNode->getProperties(); + // The "true" here is necessary to receive referenced nodes just as identifiers and not as objects! + $properties = (array)$sourceNode->getProperties(true); $propertiesToTranslate = []; foreach ($properties as $propertyName => $propertyValue) { if (empty($propertyValue) || !is_string($propertyValue)) {