mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
fix CarThrottleBridge (#4442)
This commit is contained in:
parent
549bed64d2
commit
4e678c955f
@ -66,7 +66,7 @@ class CarThrottleBridge extends BridgeAbstract
|
|||||||
foreach ($categoryPage->find('div.cmg-card') as $post) {
|
foreach ($categoryPage->find('div.cmg-card') as $post) {
|
||||||
$item = [];
|
$item = [];
|
||||||
|
|
||||||
$titleElement = $post->find('div.title a')[0];
|
$titleElement = $post->find('a.title')[0];
|
||||||
$post_uri = self::URI . $titleElement->getAttribute('href');
|
$post_uri = self::URI . $titleElement->getAttribute('href');
|
||||||
|
|
||||||
if (!isset($post_uri) || $post_uri == '') {
|
if (!isset($post_uri) || $post_uri == '') {
|
||||||
@ -80,8 +80,8 @@ class CarThrottleBridge extends BridgeAbstract
|
|||||||
|
|
||||||
$item['author'] = $this->parseAuthor($articlePage);
|
$item['author'] = $this->parseAuthor($articlePage);
|
||||||
|
|
||||||
$articleImage = $articlePage->find('div.block-layout-field-image')[0];
|
$articleImage = $articlePage->find('figure')[0];
|
||||||
$article = $articlePage->find('div.block-layout-body')[1];
|
$article = $articlePage->find('div.first-column div.body')[0];
|
||||||
|
|
||||||
//remove ads
|
//remove ads
|
||||||
foreach ($article->find('aside') as $ad) {
|
foreach ($article->find('aside') as $ad) {
|
||||||
|
Loading…
Reference in New Issue
Block a user