Target Android 12L (#11258)
This commit is contained in:
parent
911adceeda
commit
78947a0392
|
@ -1,5 +1,5 @@
|
|||
object AndroidConfig {
|
||||
const val compileSdk = 31
|
||||
const val compileSdk = 32
|
||||
const val minSdk = 21
|
||||
const val targetSdk = 31
|
||||
const val targetSdk = 32
|
||||
}
|
||||
|
|
|
@ -74,8 +74,10 @@ class manga1s : ParsedHttpSource() {
|
|||
description = document.select("#manga-description").text().trim()
|
||||
genre = document.select(".novel-categories > a").joinToString { it.text() }
|
||||
status =
|
||||
when (document.select(".novel-info i.fa-flag")[0].parent().parent().select("span")
|
||||
.text()) {
|
||||
when (
|
||||
document.select(".novel-info i.fa-flag")[0].parent().parent().select("span")
|
||||
.text()
|
||||
) {
|
||||
"On-going" -> SManga.ONGOING
|
||||
"Completed" -> SManga.COMPLETED
|
||||
else -> SManga.UNKNOWN
|
||||
|
|
Loading…
Reference in New Issue