next try to stick to the column length :/

This commit is contained in:
Ferdinand Kuhl 2024-06-27 21:27:38 +02:00
parent e94b044d3a
commit 2119e62bbb

View file

@ -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