parent
52da22ba09
commit
7ef7fe679d
|
@ -5,7 +5,7 @@ ext {
|
|||
appName = 'Tachiyomi: ReadMangaToday'
|
||||
pkgNameSuffix = 'en.readmangatoday'
|
||||
extClass = '.Readmangatoday'
|
||||
extVersionCode = 8
|
||||
extVersionCode = 9
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -165,13 +165,9 @@ class Readmangatoday : ParsedHttpSource() {
|
|||
}
|
||||
|
||||
override fun pageListParse(document: Document): List<Page> {
|
||||
val pages = mutableListOf<Page>()
|
||||
|
||||
document.select("div.content-list img").forEachIndexed{ i, img ->
|
||||
pages.add(Page(i, "", img.attr("abs:src")))
|
||||
return document.select("div.content-list > img").mapIndexed{ i, img ->
|
||||
Page(i, "", img.attr("abs:src"))
|
||||
}
|
||||
|
||||
return pages
|
||||
}
|
||||
|
||||
override fun imageUrlParse(document: Document): String = throw UnsupportedOperationException("Not used")
|
||||
|
|
Loading…
Reference in New Issue