mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-10 17:08:47 +00:00
fix: php error in ViceBridge (#3003)
Fixes Undefined variable: article at bridges/ViceBridge.php line 37
This commit is contained in:
parent
9d16e81e17
commit
cca11174e1
@ -34,7 +34,7 @@ class ViceBridge extends FeedExpander
|
||||
// $articlePage gets the entire page's contents
|
||||
$articlePage = getSimpleHTMLDOM($newsItem->link);
|
||||
// text and embedded content
|
||||
$article = $article . $articlePage->find('.article__body', 0);
|
||||
$article = $articlePage->find('.article__body', 0);
|
||||
$item['content'] = $article;
|
||||
|
||||
return $item;
|
||||
|
Loading…
Reference in New Issue
Block a user