1
0
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:
MetaPrime
2025-01-02 02:29:08 -08:00
parent b1e3771cc9
commit 692430cfcb

View File

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