Skip to content

Commit

Permalink
M18 : Fix single chapter title detection
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbWatershed committed Dec 16, 2022
1 parent 8be4ee0 commit 27d21c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class Manhwa18Content extends BaseContentParser {
@Selector(value = ".series-information a[href*=genre]")
private List<Element> tags;

@Selector(value = "head [property=og:title]", attr = "content", defValue = "")
@Selector(value = "meta[property=og:title]", attr = "content", defValue = "")
private String chapterTitle;
@Selector(value = "#chapter-content img")
private List<Element> chapterImgs;
Expand Down

0 comments on commit 27d21c3

Please sign in to comment.