Skip to content

Commit

Permalink
Fix Parser exiledrebelsscanlations
Browse files Browse the repository at this point in the history
  • Loading branch information
ImLJS committed Feb 10, 2024
1 parent 17cb176 commit 8d3c6c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/js/parsers/ExiledrebelsscanlationsParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ class ExiledrebelsscanlationsParser extends Parser{
}

async getChapterUrls(dom) {
let menu = dom.querySelector("div.lcp_catlist");
return util.hyperlinksToChapterList(menu);
return [...dom.querySelectorAll("div.lcp_catlist a")]
.map((a) => util.hyperLinkToChapter(a));
}

findContent(dom) {
Expand Down

0 comments on commit 8d3c6c1

Please sign in to comment.