1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-04-22 12:42:02 +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
commit 2f0b78dd3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
}