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

Merge WordpressComic page layout change #1884

https://github.com/RipMeApp/ripme/pull/1884
This commit is contained in:
soloturn
2021-05-22 06:11:06 +02:00

View File

@@ -376,7 +376,7 @@ public class WordpressComicRipper extends AbstractHTMLRipper {
// freeadultcomix gets it own if because it needs to add http://freeadultcomix.com to the start of each link
// TODO review the above comment which no longer applies -- see if there's a refactoring we should do here.
if (url.toExternalForm().contains("freeadultcomix.com")) {
for (Element elem : doc.select("div.single-post > p > img.aligncenter")) {
for (Element elem : doc.select("div.post-texto > p > noscript > img[class*=aligncenter]")) {
result.add(elem.attr("src"));
}
} else if (url.toExternalForm().contains("comics-xxx.com")) {
@@ -384,7 +384,7 @@ public class WordpressComicRipper extends AbstractHTMLRipper {
result.add(elem.attr("src"));
}
} else if (url.toExternalForm().contains("shipinbottle.pepsaga.com")) {
for (Element elem : doc.select("div#comic > div.comicpane > a > img")) {
for (Element elem : doc.select("div#comic > a > img")) {
result.add(elem.attr("src"));
}
} else if (url.toExternalForm().contains("8muses.download")) {