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 @Override
public List<String> getURLsFromPage(Document doc) { public List<String> getURLsFromPage(Document doc) {
List<String> result = new ArrayList<String>(); 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")); result.add(el.attr("src"));
} }
return result; return result;