Commit 6f65140 1 parent 3e4eaf1 commit 6f65140 Copy full SHA for 6f65140
File tree 1 file changed +4
-2
lines changed
src/main/java/com/rarchives/ripme/ripper/rippers
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -45,12 +45,14 @@ public String getGID(URL url) throws MalformedURLException {
45
45
p = ALBUM_PATTERN ;
46
46
m = p .matcher (url .toExternalForm ());
47
47
if (m .matches ()) {
48
+ logger .info ("Found nude-gals photo album page" );
48
49
return "album_" + m .group (1 );
49
50
}
50
51
51
52
p = VIDEO_PATTERN ;
52
53
m = p .matcher (url .toExternalForm ());
53
54
if (m .matches ()) {
55
+ logger .info ("Found nude-gals video page" );
54
56
return "video_" + m .group (1 );
55
57
}
56
58
@@ -70,7 +72,7 @@ public List<String> getURLsFromPage(Document doc) {
70
72
p = ALBUM_PATTERN ;
71
73
m = p .matcher (url .toExternalForm ());
72
74
if (m .matches ()) {
73
- logger .info ("Found nude-gals photo album" );
75
+ logger .info ("Ripping nude-gals photo album" );
74
76
Elements thumbs = doc .select ("img.thumbnail" );
75
77
for (Element thumb : thumbs ) {
76
78
String link = thumb .attr ("src" ).strip ().replaceAll ("thumbs/th_" , "" );
@@ -83,7 +85,7 @@ public List<String> getURLsFromPage(Document doc) {
83
85
p = VIDEO_PATTERN ;
84
86
m = p .matcher (url .toExternalForm ());
85
87
if (m .matches ()) {
86
- logger .info ("Found nude-gals video" );
88
+ logger .info ("Ripping nude-gals video" );
87
89
Elements thumbs = doc .select ("video source" );
88
90
for (Element thumb : thumbs ) {
89
91
String link = thumb .attr ("src" ).strip ();
You can’t perform that action at this time.
0 commit comments