diff --git a/src/Model/Common/LocalizedString.php b/src/Model/Common/LocalizedString.php index 0ca0800dc4..75a1a0a5b3 100644 --- a/src/Model/Common/LocalizedString.php +++ b/src/Model/Common/LocalizedString.php @@ -45,7 +45,7 @@ public function __construct(array $values, $context = null) public function __get($locale) { $context = new Context(); - $context->setLanguages([$locale]); + $context->setLanguages([$locale])->setGraceful($this->getContext()->isGraceful()); return $this->get($context); }