Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
See: #1436
ToC pagination links missing "https:"scheme.
  • Loading branch information
dteviot committed Aug 22, 2024
1 parent 475ba8a commit 137c26c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugin/js/parsers/NovelsemperorParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ class NovelsemperorParser extends Parser{
}
return [...pagination.querySelectorAll("li.pagination-link")]?.pop()
?.getAttribute("onclick")
?.split("'")?.[1];
?.split("'")?.[1]
?.replace("//", "https://");
}

findContent(dom) {
Expand Down

0 comments on commit 137c26c

Please sign in to comment.