1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-15 02:14:10 +02:00

src --> data-src in AllporncomicRipper

This commit is contained in:
soloturn
2020-11-21 09:11:58 +01:00
parent 73c9feb6e2
commit 2544b20ebc

View File

@@ -56,7 +56,7 @@ public class AllporncomicRipper extends AbstractHTMLRipper {
public List<String> getURLsFromPage(Document doc) { public List<String> getURLsFromPage(Document doc) {
List<String> result = new ArrayList<>(); List<String> result = new ArrayList<>();
for (Element el : doc.select(".wp-manga-chapter-img")) { for (Element el : doc.select(".wp-manga-chapter-img")) {
result.add(el.attr("src")); result.add(el.attr("data-src"));
} }
return result; return result;
} }