mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-03 16:19:45 +00:00
[PriviblurBridge] Fix invalid favicon, use either Tumblr or blog icon (#4327)
This commit is contained in:
parent
2294dac3f1
commit
9457e075f6
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user