BlogTruyen: update page list selector (#4506)
BlogTruyen: update domain
This commit is contained in:
parent
afe2bf4e55
commit
490a7b1c0c
|
@ -2,4 +2,4 @@ plugins {
|
||||||
id("lib-multisrc")
|
id("lib-multisrc")
|
||||||
}
|
}
|
||||||
|
|
||||||
baseVersionCode = 1
|
baseVersionCode = 2
|
||||||
|
|
|
@ -291,7 +291,7 @@ abstract class BlogTruyen(
|
||||||
override fun pageListParse(document: Document): List<Page> {
|
override fun pageListParse(document: Document): List<Page> {
|
||||||
val pages = mutableListOf<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")))
|
pages.add(Page(i, imageUrl = e.absUrl("src")))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue