fix novelle leggere chapter issue (#5420)

some chapter cant load images
This commit is contained in:
Riztard Lanthorn 2021-01-15 10:19:12 +07:00 committed by GitHub
parent b3707d3b6f
commit 4e3f93c431
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Novelle Leggere' extName = 'Novelle Leggere'
pkgNameSuffix = 'it.novelleleggere' pkgNameSuffix = 'it.novelleleggere'
extClass = '.NovelleLeggere' extClass = '.NovelleLeggere'
extVersionCode = 2 extVersionCode = 3
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -71,7 +71,7 @@ class NovelleLeggere : ParsedHttpSource() {
// Pages // Pages
override fun pageListParse(document: Document): List<Page> = mutableListOf<Page>().apply { override fun pageListParse(document: Document): List<Page> = mutableListOf<Page>().apply {
document.select("div.post-content p>img").forEachIndexed { index, element -> document.select("div.post-content p>img, div.post-content figure>img").forEachIndexed { index, element ->
add(Page(index, "", element.attr("abs:src").substringBefore("?"))) add(Page(index, "", element.attr("abs:src").substringBefore("?")))
} }
} }