
* Localize the Madara strings. * Lint some overrides. * Add missing comma. * Fix build error due to final in multilang sources. * Fix typo in author string. * Fix a merge conflict.
18 lines
488 B
Kotlin
18 lines
488 B
Kotlin
package eu.kanade.tachiyomi.extension.en.mangahubio
|
|
|
|
import eu.kanade.tachiyomi.lib.ratelimit.SpecificHostRateLimitInterceptor
|
|
import eu.kanade.tachiyomi.multisrc.mangahub.MangaHub
|
|
import okhttp3.OkHttpClient
|
|
|
|
class MangaHubIo : MangaHub(
|
|
"MangaHub",
|
|
"https://mangahub.io",
|
|
"en"
|
|
) {
|
|
override val client: OkHttpClient = super.client.newBuilder()
|
|
.addInterceptor(SpecificHostRateLimitInterceptor(cdnHost, 1, 2))
|
|
.build()
|
|
|
|
override val serverId = "m01"
|
|
}
|