Explosm - chapter dates (#2001)

This commit is contained in:
Mike 2020-01-06 22:48:32 -05:00 committed by arkon
parent 731638554c
commit c8e48c6865
2 changed files with 10 additions and 4 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: Cyanide & Happiness'
pkgNameSuffix = 'en.explosm'
extClass = '.Explosm'
extVersionCode = 1
extVersionCode = 2
libVersion = '1.2'
}

View File

@ -10,6 +10,8 @@ import okhttp3.Response
import org.jsoup.nodes.Document
import rx.Observable
import org.jsoup.nodes.Element
import java.util.Locale
import java.text.SimpleDateFormat
class Explosm : HttpSource() {
@ -80,10 +82,14 @@ class Explosm : HttpSource() {
}
private fun Document.chaptersFromDocument(): List<SChapter> {
return this.select("div.inner-wrap > div.row div.row.collapse").map {
return this.select("div.inner-wrap > div.row div.row.collapse").map { element ->
SChapter.create().apply {
setUrlWithoutDomain(it.select("a").attr("href"))
name = it.select("div#comic-author").text()
setUrlWithoutDomain(element.select("a").attr("href"))
element.select("div#comic-author").text().let { cName ->
name = cName
date_upload = SimpleDateFormat("yyyy.MM.dd", Locale.getDefault())
.parse(cName.substringBefore(" ")).time
}
}
}
}