Skip to content

Commit

Permalink
fixes #393 #394
Browse files Browse the repository at this point in the history
  • Loading branch information
irfan-dahir committed Feb 18, 2022
1 parent 193ce5f commit e3a673b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Parser/Anime/MoreInfoParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function getMoreInfo(): ?string
{
$moreinfo = JString::cleanse(
Parser::removeChildNodes(
$this->crawler->filterXPath('//div[@class="js-scrollfix-bottom-rel"]')
$this->crawler->filterXPath('//div[contains(@class, "rightside")]')
)->text()
);

Expand Down
2 changes: 1 addition & 1 deletion src/Parser/Manga/MoreInfoParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function getMoreInfo(): ?string
{
$moreinfo = JString::cleanse(
Parser::removeChildNodes(
$this->crawler->filterXPath('//div[@class="js-scrollfix-bottom-rel"]')
$this->crawler->filterXPath('//div[contains(@class, "rightside")]')
)->text()
);

Expand Down

0 comments on commit e3a673b

Please sign in to comment.