1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-19 12:11:40 +02:00

E-hentai ripper not working fix.

This commit is contained in:
joroto
2024-11-19 20:10:18 +03:00
committed by soloturn
parent 321a4bfba1
commit e86161dd35

View File

@@ -177,7 +177,7 @@ public class EHentaiRipper extends AbstractHTMLRipper {
@Override @Override
public List<String> getURLsFromPage(Document page) { public List<String> getURLsFromPage(Document page) {
List<String> imageURLs = new ArrayList<>(); List<String> imageURLs = new ArrayList<>();
Elements thumbs = page.select("#gdt > .gdtm a"); Elements thumbs = page.select("#gdt > a");
// Iterate over images on page // Iterate over images on page
for (Element thumb : thumbs) { for (Element thumb : thumbs) {
imageURLs.add(thumb.attr("href")); imageURLs.add(thumb.attr("href"));