Skip to content

Commit

Permalink
Merge pull request #368 from seanbreckenridge/master
Browse files Browse the repository at this point in the history
bugfix: renamed manga character container class
  • Loading branch information
irfan-dahir authored Oct 19, 2021
2 parents dc5aea8 + 4b7439f commit 4059c8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Parser/Manga/CharactersParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function __construct(Crawler $crawler)
public function getCharacters(): array
{
return $this->crawler
->filterXPath('//div[contains(@class, "anime-character-container")]/table')
->filterXPath('//div[contains(@class, "manga-character-container")]/table')
->each(
function (Crawler $crawler) {
return CharacterListItem::fromParser(new CharacterListItemParser($crawler));
Expand Down

0 comments on commit 4059c8e

Please sign in to comment.