1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-18 19:51:35 +02:00

Fixed Myreadingmanga Ripper

img-tag is not child of div.separator anymore. An a-tag separates both. This was fixed.
This commit is contained in:
Felix Friebe
2019-11-11 22:17:50 -06:00
parent 1c4581cdac
commit fbfd412619

View File

@@ -50,7 +50,7 @@ public class MyreadingmangaRipper extends AbstractHTMLRipper {
@Override
public List<String> getURLsFromPage(Document doc) {
List<String> result = new ArrayList<>();
for (Element el : doc.select("div.separator > img")) {
for (Element el : doc.select("div.separator > a > img")) {
String imageSource = el.attr("data-lazy-src");
result.add(imageSource);
}