ManhwaDesu: update domain (#4477)

This commit is contained in:
AwkwardPeak7 2024-08-08 07:26:33 +05:00 committed by Draff
parent 425d6e839d
commit fa0910b72c
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 11 additions and 3 deletions

View File

@ -2,8 +2,8 @@ ext {
extName = 'ManhwaDesu'
extClass = '.ManhwaDesu'
themePkg = 'mangathemesia'
baseUrl = 'https://manhwadesu.one'
overrideVersionCode = 4
baseUrl = 'https://manhwadesu.cc'
overrideVersionCode = 5
isNsfw = true
}

View File

@ -4,8 +4,16 @@ import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
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()
.rateLimit(4)