Merge pull request #576 from cyian-1756/hentai2readFixes
Fixed hentai2read ripper
This commit is contained in:
commit
5fc79eb658
@ -44,20 +44,15 @@ public class Hentai2readRipper extends AbstractHTMLRipper {
|
||||
|
||||
@Override
|
||||
public Document getFirstPage() throws IOException {
|
||||
Document tempDoc;
|
||||
// get the first page of the comic
|
||||
if (url.toExternalForm().substring(url.toExternalForm().length() - 1).equals("/")) {
|
||||
tempDoc = Http.url(url + "1").get();
|
||||
} else {
|
||||
tempDoc = Http.url(url + "/1").get();
|
||||
try {
|
||||
Document tempDoc;
|
||||
tempDoc = Http.url(url).get();
|
||||
// Get the thumbnail page so we can rip all images without loading every page in the comic
|
||||
String thumbnailLink = tempDoc.select("a[data-original-title=Thumbnails").attr("href");
|
||||
return Http.url(thumbnailLink).get();
|
||||
} catch (IOException e) {
|
||||
throw new IOException("Unable to get first page");
|
||||
}
|
||||
for (Element el : tempDoc.select("ul.nav > li > a")) {
|
||||
if (el.attr("href").startsWith("https://hentai2read.com/thumbnails/")) {
|
||||
// Get the page with the thumbnails
|
||||
return Http.url(el.attr("href")).get();
|
||||
}
|
||||
}
|
||||
throw new IOException("Unable to get first page");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user