parent
ee16e25b5a
commit
296ca1c328
|
@ -5,8 +5,8 @@ ext {
|
||||||
appName = 'Tachiyomi: RawLH'
|
appName = 'Tachiyomi: RawLH'
|
||||||
pkgNameSuffix = "ja.rawlh"
|
pkgNameSuffix = "ja.rawlh"
|
||||||
extClass = '.Rawlh'
|
extClass = '.Rawlh'
|
||||||
extVersionCode = 3
|
extVersionCode = 4
|
||||||
extVersionSuffix = 1
|
extVersionSuffix = 2
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -103,11 +103,11 @@ class Rawlh : ParsedHttpSource() {
|
||||||
else -> SManga.UNKNOWN
|
else -> SManga.UNKNOWN
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun chapterListSelector() = " table.table.table-hover tbody tr"
|
override fun chapterListSelector() = ".list-chapters p"
|
||||||
|
|
||||||
override fun chapterFromElement(element: Element): SChapter {
|
override fun chapterFromElement(element: Element): SChapter {
|
||||||
val urlElement = element.select("td a").first()
|
val urlElement = element.select("a.chapter").first()
|
||||||
val timeElement = element.select("td time").first()
|
val timeElement = element.select(".pubDate time").first()
|
||||||
|
|
||||||
val chapter = SChapter.create()
|
val chapter = SChapter.create()
|
||||||
chapter.setUrlWithoutDomain("/" + urlElement.attr("href"))
|
chapter.setUrlWithoutDomain("/" + urlElement.attr("href"))
|
||||||
|
|
Loading…
Reference in New Issue