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

Fixed porncomix.one ripper

This commit is contained in:
cyian-1756
2019-02-19 02:27:29 -05:00
parent 2d77fddc3b
commit 65e8db8f93

View File

@@ -51,7 +51,7 @@ public class PorncomixDotOneRipper extends AbstractHTMLRipper {
public List<String> getURLsFromPage(Document doc) { public List<String> getURLsFromPage(Document doc) {
List<String> result = new ArrayList<>(); List<String> result = new ArrayList<>();
// We have 2 loops here to cover all the different album types // We have 2 loops here to cover all the different album types
for (Element el : doc.select(".dgwt-jg-gallery > a")) { for (Element el : doc.select(".dgwt-jg-item > a")) {
result.add(el.attr("href")); result.add(el.attr("href"));
} }
for (Element el : doc.select(".unite-gallery > img")) { for (Element el : doc.select(".unite-gallery > img")) {