From 38e832daae62915a5caf0a9807b1f8d8b1574af1 Mon Sep 17 00:00:00 2001 From: Mynacol Date: Wed, 8 Feb 2023 19:44:01 +0100 Subject: [PATCH] [GolemBridge] Remove link from author (#3248) Fixes #3224. --- bridges/GolemBridge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/GolemBridge.php b/bridges/GolemBridge.php index 2fdab5b6..f6dd97df 100644 --- a/bridges/GolemBridge.php +++ b/bridges/GolemBridge.php @@ -85,7 +85,7 @@ class GolemBridge extends FeedExpander $author = $articlePage->find('article header .authors .authors__name', 0); if ($author) { - $item['author'] = $author->innertext; + $item['author'] = $author->plaintext; } $item['content'] .= $this->extractContent($articlePage);