1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-01-17 20:58:31 +01:00

Merge Zizki Page layout change #1885

https://github.com/RipMeApp/ripme/pull/1885
This commit is contained in:
soloturn 2021-05-22 06:20:55 +02:00
commit d8eaeea89b

View File

@ -87,14 +87,12 @@ public class ZizkiRipper extends AbstractHTMLRipper {
if (thumb.hasAttr("typeof")) {
img_type = thumb.attr("typeof");
if (img_type.equals("foaf:Image")) {
LOGGER.debug("Found image with " + img_type);
if (thumb.parent() != null &&
thumb.parent().parent() != null &&
thumb.parent().parent().attr("class") != null &&
thumb.parent().parent().attr("class").equals("aimage-center")
thumb.parent().attr("class") != null &&
thumb.parent().attr("class").contains("colorbox")
)
{
src = thumb.attr("src");
src = thumb.parent().attr("href");
LOGGER.debug("Found url with " + src);
if (!src.contains("zizki.com")) {
} else {