parent
e0d4925ae9
commit
e710fee5c5
|
@ -3,7 +3,7 @@ ext {
|
|||
extClass = '.ManhwaWorld'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://aquascans.com'
|
||||
overrideVersionCode = 1
|
||||
overrideVersionCode = 2
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
|
|
@ -1,7 +1,19 @@
|
|||
package eu.kanade.tachiyomi.extension.en.manhwaworld
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimitHost
|
||||
import okhttp3.HttpUrl.Companion.toHttpUrl
|
||||
|
||||
class ManhwaWorld : Madara("AQUA Scans", "https://aquascans.com", "en") {
|
||||
class ManhwaWorld : Madara(
|
||||
"AQUA Scans",
|
||||
"https://aquascans.com",
|
||||
"en",
|
||||
) {
|
||||
override val id = 8857833474626810640
|
||||
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimitHost(baseUrl.toHttpUrl(), 3, 1)
|
||||
.build()
|
||||
|
||||
override val chapterUrlSuffix = ""
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue