Skip to content

Commit 2bbb056

Browse files
committed
E-hentai ripper not working fix.
1 parent 5d7897d commit 2bbb056

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/rarchives/ripme/ripper/rippers/EHentaiRipper.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public Document getNextPage(Document doc) throws IOException, URISyntaxException
177177
@Override
178178
public List<String> getURLsFromPage(Document page) {
179179
List<String> imageURLs = new ArrayList<>();
180-
Elements thumbs = page.select("#gdt > .gdtm a");
180+
Elements thumbs = page.select("#gdt > a");
181181
// Iterate over images on page
182182
for (Element thumb : thumbs) {
183183
imageURLs.add(thumb.attr("href"));

0 commit comments

Comments
 (0)