diff --git a/src/en/latisbooks/build.gradle b/src/en/latisbooks/build.gradle index ab4e4dc38..51ba73f1b 100644 --- a/src/en/latisbooks/build.gradle +++ b/src/en/latisbooks/build.gradle @@ -5,7 +5,7 @@ ext { extName = 'Latis Books' pkgNameSuffix = 'en.latisbooks' extClass = '.Latisbooks' - extVersionCode = 4 + extVersionCode = 5 isNsfw = true } diff --git a/src/en/latisbooks/src/eu/kanade/tachiyomi/extension/en/latisbooks/Latisbooks.kt b/src/en/latisbooks/src/eu/kanade/tachiyomi/extension/en/latisbooks/Latisbooks.kt index 3dc054b28..e3cc0517e 100644 --- a/src/en/latisbooks/src/eu/kanade/tachiyomi/extension/en/latisbooks/Latisbooks.kt +++ b/src/en/latisbooks/src/eu/kanade/tachiyomi/extension/en/latisbooks/Latisbooks.kt @@ -37,7 +37,7 @@ class Latisbooks : HttpSource() { initialized = true title = "Bodysuit 23" url = "/archive/" - thumbnail_url = response.asJsoup().select("img.thumb-image").firstOrNull()?.attr("abs:data-src") + thumbnail_url = "https://images.squarespace-cdn.com/content/v1/56595108e4b01110e1cf8735/1511856223610-NSB8O5OJ1F6KPQL0ZGBH/image-asset.jpeg" } } @@ -121,7 +121,7 @@ class Latisbooks : HttpSource() { val blocks = response.asJsoup().select("div.content-wrapper div.row div.col") // Handle multiple images per page (e.g. Page 23+24) - val pages = blocks.select("img.thumb-image") + val pages = blocks.select("div.image-block-wrapper img") .mapIndexed { i, it -> Page(i, "", it.attr("abs:data-src")) } .toMutableList()