1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-07-31 11:00:13 +02:00

Merge pull request #120 from cyian-1756/shesfreaky

Fixed shesfreaky.com ripper
This commit is contained in:
cyian-1756
2017-10-26 10:32:43 -04:00
committed by GitHub

View File

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