Skip to content

Commit

Permalink
Merge pull request #1460 from gamebeaker/update-69shu
Browse files Browse the repository at this point in the history
update 69shu
  • Loading branch information
gamebeaker authored Sep 4, 2024
2 parents 6f7c5e7 + 3153479 commit 181cdc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/js/parsers/69shuParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class ShuParser extends Parser{
async getChapterUrls(dom) {
let tocUrl = dom.querySelector("a.more-btn").href;
let toc = (await HttpClient.wrapFetch(tocUrl, this.makeOptions())).responseXML;
let menu = toc.querySelector("#catalog");
return util.hyperlinksToChapterList(menu);
let menu = toc.querySelector("#catalog ul");
return util.hyperlinksToChapterList(menu).reverse();
}

findContent(dom) {
Expand Down

0 comments on commit 181cdc3

Please sign in to comment.