ManhwaDesu: update domain (#4477)
This commit is contained in:
parent
425d6e839d
commit
fa0910b72c
|
@ -2,8 +2,8 @@ ext {
|
||||||
extName = 'ManhwaDesu'
|
extName = 'ManhwaDesu'
|
||||||
extClass = '.ManhwaDesu'
|
extClass = '.ManhwaDesu'
|
||||||
themePkg = 'mangathemesia'
|
themePkg = 'mangathemesia'
|
||||||
baseUrl = 'https://manhwadesu.one'
|
baseUrl = 'https://manhwadesu.cc'
|
||||||
overrideVersionCode = 4
|
overrideVersionCode = 5
|
||||||
isNsfw = true
|
isNsfw = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,16 @@ import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||||
import okhttp3.OkHttpClient
|
import okhttp3.OkHttpClient
|
||||||
import org.jsoup.nodes.Element
|
import org.jsoup.nodes.Element
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
class ManhwaDesu : MangaThemesia("ManhwaDesu", "https://manhwadesu.one", "id", "/komik") {
|
class ManhwaDesu : MangaThemesia(
|
||||||
|
"ManhwaDesu",
|
||||||
|
"https://manhwadesu.cc",
|
||||||
|
"id",
|
||||||
|
"/komik",
|
||||||
|
SimpleDateFormat("MMMM dd, yyyy", Locale("id")),
|
||||||
|
) {
|
||||||
|
|
||||||
override val client: OkHttpClient = super.client.newBuilder()
|
override val client: OkHttpClient = super.client.newBuilder()
|
||||||
.rateLimit(4)
|
.rateLimit(4)
|
||||||
|
|
Loading…
Reference in New Issue