Mangakyo - domain change (#2835)

Mangakyo - domain change
This commit is contained in:
Mike 2020-04-25 21:39:46 -04:00 committed by GitHub
parent 962fb9259a
commit 28438fd55f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: Mangakyo' appName = 'Tachiyomi: Mangakyo'
pkgNameSuffix = 'id.mangakyo' pkgNameSuffix = 'id.mangakyo'
extClass = '.Mangakyo' extClass = '.Mangakyo'
extVersionCode = 1 extVersionCode = 2
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -15,7 +15,7 @@ import org.jsoup.nodes.Element
class Mangakyo : ParsedHttpSource() { class Mangakyo : ParsedHttpSource() {
override val name: String = "Mangakyo" override val name: String = "Mangakyo"
override val lang: String = "id" override val lang: String = "id"
override val baseUrl: String = "https://www.mangakyo.com" override val baseUrl: String = "https://www.mangakyo.me"
override val supportsLatest: Boolean = true override val supportsLatest: Boolean = true
override val client: OkHttpClient = network.cloudflareClient override val client: OkHttpClient = network.cloudflareClient
@ -72,7 +72,7 @@ class Mangakyo : ParsedHttpSource() {
"Completed" -> SManga.COMPLETED "Completed" -> SManga.COMPLETED
else -> SManga.UNKNOWN else -> SManga.UNKNOWN
} }
description = document.select("span.desc p").map { it.text() }.joinToString("\n") description = document.select("span.desc p").joinToString("\n") { it.text() }
} }
// Chapter // Chapter