mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
fix(cnet): author typo (#4042)
This commit is contained in:
parent
17a3b4c9d8
commit
9682f74fc5
@ -56,7 +56,7 @@ class CNETBridge extends SitemapBridge
|
|||||||
foreach ($links as $article_uri) {
|
foreach ($links as $article_uri) {
|
||||||
$article_dom = convertLazyLoading(getSimpleHTMLDOMCached($article_uri));
|
$article_dom = convertLazyLoading(getSimpleHTMLDOMCached($article_uri));
|
||||||
$title = trim($article_dom->find('h1', 0)->plaintext);
|
$title = trim($article_dom->find('h1', 0)->plaintext);
|
||||||
$author = $article_dom->find('span.c-assetAuthor_name', 0)->plaintext;
|
$author = $article_dom->find('span.c-assetAuthor_name', 0);
|
||||||
$headline = $article_dom->find('p.c-contentHeader_description', 0);
|
$headline = $article_dom->find('p.c-contentHeader_description', 0);
|
||||||
$content = $article_dom->find('div.c-pageArticle_content, div.single-article__content, div.article-main-body', 0);
|
$content = $article_dom->find('div.c-pageArticle_content, div.single-article__content, div.article-main-body', 0);
|
||||||
$date = null;
|
$date = null;
|
||||||
@ -97,7 +97,11 @@ class CNETBridge extends SitemapBridge
|
|||||||
$item = [];
|
$item = [];
|
||||||
$item['uri'] = $article_uri;
|
$item['uri'] = $article_uri;
|
||||||
$item['title'] = $title;
|
$item['title'] = $title;
|
||||||
$item['author'] = $author;
|
|
||||||
|
if ($author) {
|
||||||
|
$item['author'] = $author->plaintext;
|
||||||
|
}
|
||||||
|
|
||||||
$item['content'] = $content;
|
$item['content'] = $content;
|
||||||
|
|
||||||
if (!is_null($date)) {
|
if (!is_null($date)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user