mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
[HackerNews] Fix tag containing comment
[HackerNews] Fix tag containing comment
This commit is contained in:
parent
6c88f2c21e
commit
df52fbc091
@ -40,7 +40,10 @@ class HackerNewsUserThreadsBridge extends BridgeAbstract
|
||||
$item['author'] = $author;
|
||||
$item['title'] = $title;
|
||||
$item['timestamp'] = $element->find('span[class*="age"]', 0)->find('a', 0)->innertext;
|
||||
$item['content'] = $element->find('span[class*="commtext"]', 0)->innertext;
|
||||
$contentDiv = $element->find('div[class*="commtext"]', 0);
|
||||
if (!empty($contentDiv)) {
|
||||
$item['content'] = $contentDiv->innertext;
|
||||
}
|
||||
|
||||
$this->items[] = $item;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user