parent
d82ea43ee9
commit
c29e850685
|
@ -5,7 +5,7 @@ ext {
|
||||||
appName = 'Tachiyomi: ReadM'
|
appName = 'Tachiyomi: ReadM'
|
||||||
pkgNameSuffix = 'en.readm'
|
pkgNameSuffix = 'en.readm'
|
||||||
extClass = '.ReadM'
|
extClass = '.ReadM'
|
||||||
extVersionCode = 1
|
extVersionCode = 2
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -146,7 +146,7 @@ class ReadM : ParsedHttpSource() {
|
||||||
|
|
||||||
override fun imageUrlParse(document: Document): String = throw Exception("Not Used")
|
override fun imageUrlParse(document: Document): String = throw Exception("Not Used")
|
||||||
override fun pageListParse(document: Document): List<Page> = document.select("div.ch-images img").mapIndexed { index, element ->
|
override fun pageListParse(document: Document): List<Page> = document.select("div.ch-images img").mapIndexed { index, element ->
|
||||||
Page(index, "", element.attr("abs:data-src"))
|
Page(index, "", element.attr("abs:src"))
|
||||||
}
|
}
|
||||||
|
|
||||||
//Filters
|
//Filters
|
||||||
|
|
Loading…
Reference in New Issue