Skip to content

Commit 5f5e346

Browse files
committed
use https
1 parent 7ca2165 commit 5f5e346

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/rarchives/ripme/ripper/rippers/CfakeRipper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public Document getNextPage(Document doc) throws IOException {
7373
if (nextPage.equals("")) {
7474
return null;
7575
} else {
76-
return Http.url("http://cfake.com" + nextPage).get();
76+
return Http.url("https://cfake.com" + nextPage).get();
7777
}
7878
}
7979

@@ -86,7 +86,7 @@ public List<String> getURLsFromPage(Document doc) {
8686
// https://cfake.com/medias/photos/2025/17358722979850276d_cfake.jpg
8787
String imageSource = el.attr("src");
8888
imageSource = imageSource.replace("thumbs", "photos");
89-
result.add("http://cfake.com" + imageSource);
89+
result.add("https://cfake.com" + imageSource);
9090
}
9191

9292
return result;

0 commit comments

Comments
 (0)