Merge pull request #488 from cyian-1756/eroshaeFixes
Fixed eroshae ripper
This commit is contained in:
commit
277e33041a
@ -119,7 +119,7 @@ public class EroShareRipper extends AbstractHTMLRipper {
|
||||
for (Element img : imgs) {
|
||||
if (img.hasClass("album-image")) {
|
||||
String imageURL = img.attr("src");
|
||||
imageURL = "https:" + imageURL;
|
||||
imageURL = imageURL;
|
||||
URLs.add(imageURL);
|
||||
}
|
||||
}
|
||||
@ -129,7 +129,7 @@ public class EroShareRipper extends AbstractHTMLRipper {
|
||||
if (vid.hasClass("album-video")) {
|
||||
Elements source = vid.getElementsByTag("source");
|
||||
String videoURL = source.first().attr("src");
|
||||
URLs.add("https:" + videoURL);
|
||||
URLs.add(videoURL);
|
||||
}
|
||||
}
|
||||
// Profile videos
|
||||
@ -148,7 +148,7 @@ public class EroShareRipper extends AbstractHTMLRipper {
|
||||
if (vid.hasClass("album-video")) {
|
||||
Elements source = vid.getElementsByTag("source");
|
||||
String videoURL = source.first().attr("src");
|
||||
URLs.add("https:" + videoURL);
|
||||
URLs.add(videoURL);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -209,7 +209,6 @@ public class EroShareRipper extends AbstractHTMLRipper {
|
||||
for (Element img : imgs) {
|
||||
if (img.hasClass("album-image")) {
|
||||
String imageURL = img.attr("src");
|
||||
imageURL = "https:" + imageURL;
|
||||
URLs.add(new URL(imageURL));
|
||||
}
|
||||
}
|
||||
@ -219,7 +218,7 @@ public class EroShareRipper extends AbstractHTMLRipper {
|
||||
if (vid.hasClass("album-video")) {
|
||||
Elements source = vid.getElementsByTag("source");
|
||||
String videoURL = source.first().attr("src");
|
||||
URLs.add(new URL("https:" + videoURL));
|
||||
URLs.add(new URL(videoURL));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user