Skip to content

Commit

Permalink
Fixed selector in CeskaTelevizeBridge (RSS-Bridge#3872)
Browse files Browse the repository at this point in the history
* Fixed selector in CeskaTelevizeBridge

* Fixed also description selector
  • Loading branch information
kolarcz authored Jan 2, 2024
1 parent e904de2 commit 0f6fa80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bridges/CeskaTelevizeBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ public function collectData()
$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);
$itemContent = $element->find('div[class^=content-]', 0);
$itemContent = $element->find('p[class^=content-]', 0);
$itemDate = $element->find('div[class^=playTime-] span', 0);
$itemThumbnail = $element->find('img', 0);
$itemUri = self::URI . $element->getAttribute('href');
Expand Down

0 comments on commit 0f6fa80

Please sign in to comment.