From 2119e62bbb23c51edd4ccff9360952c6bedf03cc Mon Sep 17 00:00:00 2001 From: Ferdinand Kuhl Date: Thu, 27 Jun 2024 21:27:38 +0200 Subject: [PATCH] next try to stick to the column length :/ --- Classes/Domain/Model/AssetAttribute.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/Domain/Model/AssetAttribute.php b/Classes/Domain/Model/AssetAttribute.php index d6a0328..65326dc 100644 --- a/Classes/Domain/Model/AssetAttribute.php +++ b/Classes/Domain/Model/AssetAttribute.php @@ -62,9 +62,9 @@ class AssetAttribute $this->value = $value; } if (!$urlValue) { - $urlValue = \mb_substr($this->value, 0, 250); + $urlValue = $this->value; } - $this->urlValue = $urlValue; + $this->urlValue = \mb_substr($urlValue, 0, 250) ; } public function initializeObject(): void