Skip to content

Commit

Permalink
Fixes xyzcomics.com
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymoulin committed Mar 5, 2020
1 parent 1e7fc49 commit 8952003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Driver/Xyzcomics.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function getDownloadables(): array
$oRes = $this->getClient()->request('GET', $this->sUrl);
$aReturn = [];
$index = 0;
foreach ($this->getDomParser()->load((string)$oRes->getBody())->find('.entry p a img') as $oImg) {
foreach ($this->getDomParser()->load((string)$oRes->getBody())->find('.entry figure a img') as $oImg) {
/**
* @var \PHPHtmlParser\Dom\AbstractNode $oImg
*/
Expand Down

0 comments on commit 8952003

Please sign in to comment.