1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-01 03:20:20 +02:00

Merge pull request #1619 from felixaufreisen/issue1607

Fix MotherlessRipper
This commit is contained in:
cyian-1756
2020-05-21 04:04:35 +00:00
committed by GitHub

View File

@@ -81,7 +81,7 @@ public class MotherlessRipper extends AbstractHTMLRipper {
protected List<String> getURLsFromPage(Document page) { protected List<String> getURLsFromPage(Document page) {
List<String> pageURLs = new ArrayList<>(); List<String> pageURLs = new ArrayList<>();
for (Element thumb : page.select("div.thumb a.img-container")) { for (Element thumb : page.select("div.thumb-container a.img-container")) {
if (isStopped()) { if (isStopped()) {
break; break;
} }