Skip to content
This repository has been archived by the owner on Jul 23, 2020. It is now read-only.

Commit

Permalink
fix kumanga missing chapter
Browse files Browse the repository at this point in the history
  • Loading branch information
raulhaag committed Aug 26, 2018
1 parent 561245f commit 1c05806
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public void loadMangaInformation(Manga manga, boolean forceReload) throws Except
try {
data = getAllMatch("leer\\/'\\+this.value\">([\\s\\S]+?)<\\/select>",
getNavigatorAndFlushParameters().get(temp.get(0).getPath().replace("/c/", "/leer/"))).get(1);
pattern = Pattern.compile("value=\"([^\"]+)\">([^<]+)", Pattern.DOTALL);
pattern = Pattern.compile("value=\"([^\"]+)\"[ selected]*>([^<]+)", Pattern.DOTALL);
matcher = pattern.matcher(data);
while (matcher.find()) {
manga.addChapterFirst(new Chapter(matcher.group(2), HOST + "/manga/leer/" + matcher.group(1)));
Expand Down

0 comments on commit 1c05806

Please sign in to comment.