mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-21 21:15:19 +02:00
Convert space to %20 before adding URL for later conversion
This commit is contained in:
@@ -56,6 +56,7 @@ public class NudeGalsRipper extends AbstractHTMLRipper {
|
|||||||
for (Element thumb : thumbs) {
|
for (Element thumb : thumbs) {
|
||||||
String link = thumb.attr("src").replaceAll("thumbs/th_", "");
|
String link = thumb.attr("src").replaceAll("thumbs/th_", "");
|
||||||
String imgSrc = "http://nude-gals.com/" + link;
|
String imgSrc = "http://nude-gals.com/" + link;
|
||||||
|
imgSrc = imgSrc.replaceAll(" ", "%20");
|
||||||
imageURLs.add(imgSrc);
|
imageURLs.add(imgSrc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user