Skip to content

Commit

Permalink
fix Alphapolis title selector
Browse files Browse the repository at this point in the history
  • Loading branch information
praschke authored Sep 26, 2023
1 parent 689c4bf commit 4d309c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/js/parsers/AlphapolisParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class AlphapolisParser extends Parser{
return dom.querySelector("div#novelBody");
}
extractTitleImpl(dom) {
return dom.querySelector("h2.title");
return dom.querySelector("div.content-main .title");
}
extractAuthor(dom) {
let authorLink = dom.querySelector("div.author a");
Expand Down

0 comments on commit 4d309c6

Please sign in to comment.