From 9457e075f6a15c702bed94cf84b62ce949815dc9 Mon Sep 17 00:00:00 2001 From: July Date: Sat, 23 Nov 2024 12:50:40 -0500 Subject: [PATCH] [PriviblurBridge] Fix invalid favicon, use either Tumblr or blog icon (#4327) --- bridges/PriviblurBridge.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/bridges/PriviblurBridge.php b/bridges/PriviblurBridge.php index 198c38bc..6b442e75 100644 --- a/bridges/PriviblurBridge.php +++ b/bridges/PriviblurBridge.php @@ -17,6 +17,7 @@ class PriviblurBridge extends BridgeAbstract ]; private $title; + private $favicon = 'https://www.tumblr.com/favicon.ico'; public function collectData() { @@ -25,6 +26,11 @@ class PriviblurBridge extends BridgeAbstract $html = defaultLinkTo($html, $url); $this->title = $html->find('head title', 0)->innertext; + if ($html->find('#blog-header img.avatar', 0)) { + $icon = $html->find('#blog-header img.avatar', 0)->src; + $this->favicon = str_replace('pnj', 'png', $icon); + } + $elements = $html->find('.post'); foreach ($elements as $element) { $item = []; @@ -64,6 +70,11 @@ class PriviblurBridge extends BridgeAbstract public function getURI() { - return $this->getInput('url') ? $this->getInput('url') : parent::getURI(); + return $this->getInput('url') ?? parent::getURI(); + } + + public function getIcon() + { + return $this->favicon; } }