From abd9e2ea77d5da734e4e35ce993a2c95cffde999 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=C3=A9stor=20de=20Dios=20Fern=C3=A1ndez?= Date: Mon, 29 Jan 2024 09:41:14 +0100 Subject: [PATCH] Set $this->format empty instead of $this->title --- src/Entity/Content.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/Content.php b/src/Entity/Content.php index 1f1471dff..24ae8e3f0 100644 --- a/src/Entity/Content.php +++ b/src/Entity/Content.php @@ -911,7 +911,7 @@ public function setListFormat(): self if ($this->contentExtension instanceof ContentExtension) { $this->listFormat = Excerpt::getExcerpt($this->getExtras()['listFormat'], 191); } else { - $this->title = ''; + $this->listFormat = ''; } return $this;