1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-01-18 21:17:59 +01:00

Fixed shesfreaky.com ripper

This commit is contained in:
cyian-1756 2017-10-23 23:48:19 -04:00
parent 7af58bcc1d
commit 9537223f89

View File

@ -51,7 +51,7 @@ public class ShesFreakyRipper extends AbstractHTMLRipper {
List<String> imageURLs = new ArrayList<String>();
for (Element thumb : doc.select("a[data-lightbox=\"gallery\"]")) {
String image = thumb.attr("href");
imageURLs.add(image);
imageURLs.add("https:" + image);
}
return imageURLs;
}