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

Fixed viewcomic ripper

This commit is contained in:
cyian-1756
2018-09-12 07:09:32 -04:00
parent 85316c7646
commit aaa662e282

View File

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