MAL anime page has been modified and right column returns no nodes.

Issue #75 resolved
sher afgan created an issue

MAL has made a small edit on their anime html page due to which the xpath query path for the right column returns no nodes.

Basically the have removed one of the div which was holding the table.

Old AnimeParser.php line 232

$rightcolumn = $crawler->filterXPath('//div[@id="content"]/table/tr/td/div/table');

Currently this is working and everything else is unchanged at least on anime page.

$rightcolumn = $crawler->filterXPath('//div[@id="content"]/table/tr/td/table');

Comments (4)

  1. Michael Johnson

    Anime and Manga Details Fixes

    Fix right column parser to adjust for new MAL page HTML. Update how the synopsis is captured to take advantage of the HTML changes and clean up parsing.

    Fixes #75

    → <<cset 34805bd55d15>>

  2. Log in to comment