We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca2165 commit 5f5e346Copy full SHA for 5f5e346
src/main/java/com/rarchives/ripme/ripper/rippers/CfakeRipper.java
@@ -73,7 +73,7 @@ public Document getNextPage(Document doc) throws IOException {
73
if (nextPage.equals("")) {
74
return null;
75
} else {
76
- return Http.url("http://cfake.com" + nextPage).get();
+ return Http.url("https://cfake.com" + nextPage).get();
77
}
78
79
@@ -86,7 +86,7 @@ public List<String> getURLsFromPage(Document doc) {
86
// https://cfake.com/medias/photos/2025/17358722979850276d_cfake.jpg
87
String imageSource = el.attr("src");
88
imageSource = imageSource.replace("thumbs", "photos");
89
- result.add("http://cfake.com" + imageSource);
+ result.add("https://cfake.com" + imageSource);
90
91
92
return result;
0 commit comments