mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-02-18 08:09:56 +03:00
Fixed selector in CeskaTelevizeBridge (#3872)
* Fixed selector in CeskaTelevizeBridge * Fixed also description selector
This commit is contained in:
parent
e904de2dc9
commit
0f6fa8034b
1 changed files with 2 additions and 2 deletions
|
@ -57,9 +57,9 @@ class CeskaTelevizeBridge extends BridgeAbstract
|
||||||
$this->feedName .= " ({$category})";
|
$this->feedName .= " ({$category})";
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($html->find('#episodeListSection a[data-testid=next-link]') as $element) {
|
foreach ($html->find('#episodeListSection a[data-testid=card]') as $element) {
|
||||||
$itemTitle = $element->find('h3', 0);
|
$itemTitle = $element->find('h3', 0);
|
||||||
$itemContent = $element->find('div[class^=content-]', 0);
|
$itemContent = $element->find('p[class^=content-]', 0);
|
||||||
$itemDate = $element->find('div[class^=playTime-] span', 0);
|
$itemDate = $element->find('div[class^=playTime-] span', 0);
|
||||||
$itemThumbnail = $element->find('img', 0);
|
$itemThumbnail = $element->find('img', 0);
|
||||||
$itemUri = self::URI . $element->getAttribute('href');
|
$itemUri = self::URI . $element->getAttribute('href');
|
||||||
|
|
Loading…
Add table
Reference in a new issue