mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-25 11:42:47 +01:00
parent
36c0691675
commit
bbd61d297c
@ -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
Block a user