Skip to content

Commit

Permalink
Merge pull request #522 from jikan-me/bugfix/anime-videos-episodes
Browse files Browse the repository at this point in the history
fixes #520 #521
  • Loading branch information
irfan-dahir authored Apr 19, 2023
2 parents 086c359 + d290ac7 commit 95d929e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Parser/Anime/StreamEpisodeListItemParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function getTitle(): string
*/
public function getEpisode(): string
{
return Parser::removeChildNodes($this->crawler->filterXPath('//a/div/span[@class="title"]'))->text();
return Parser::removeChildNodes($this->crawler->filterXPath('//a/div/span[contains(@class,"title")]'))->text();
}

/**
Expand Down

0 comments on commit 95d929e

Please sign in to comment.