BlogTruyen: update page list selector (#4506)

BlogTruyen: update domain
This commit is contained in:
AwkwardPeak7 2024-08-09 10:30:02 +05:00 committed by GitHub
parent 0d22495b7e
commit cb7b1b20c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -2,4 +2,4 @@ plugins {
id("lib-multisrc")
}
baseVersionCode = 1
baseVersionCode = 2

View File

@ -291,7 +291,7 @@ abstract class BlogTruyen(
override fun pageListParse(document: Document): List<Page> {
val pages = mutableListOf<Page>()
document.select("#content > img").forEachIndexed { i, e ->
document.select(".content > img, #content > img").forEachIndexed { i, e ->
pages.add(Page(i, imageUrl = e.absUrl("src")))
}