1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-04-22 12:42:02 +02:00

Fix MotherlessRipper: change CSS selector

This commit is contained in:
Felix Friebe 2020-04-05 02:21:55 +02:00
parent 6128862fbf
commit d6ffcdfbe7

View File

@ -81,7 +81,7 @@ public class MotherlessRipper extends AbstractHTMLRipper {
protected List<String> getURLsFromPage(Document page) {
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()) {
break;
}