mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-04 01:55:21 +02:00
[bridges] Fix all calls to get_cached
This commit is contained in:
parent
5f3d28f3a6
commit
a7b3519c35
6 changed files with 6 additions and 6 deletions
|
@ -25,7 +25,7 @@ class FreenewsBridge extends RssExpander {
|
|||
}
|
||||
// now load that uri from cache
|
||||
$this->debugMessage("now loading page ".$item['uri']);
|
||||
$articlePage = str_get_html($this->get_cached($item['uri']));
|
||||
$articlePage = $this->get_cached($item['uri']);
|
||||
|
||||
$content = $articlePage->find('.post-container', 0);
|
||||
$item['content'] = $content->innertext;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue