* 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
		
	
	
		
			500 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			500 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
package eu.kanade.tachiyomi.extension.en.mangahereonl
 | 
						|
 | 
						|
import eu.kanade.tachiyomi.lib.ratelimit.SpecificHostRateLimitInterceptor
 | 
						|
import eu.kanade.tachiyomi.multisrc.mangahub.MangaHub
 | 
						|
import okhttp3.OkHttpClient
 | 
						|
 | 
						|
class MangaHereOnl : MangaHub(
 | 
						|
    "MangaHere.onl",
 | 
						|
    "https://mangahere.onl",
 | 
						|
    "en"
 | 
						|
) {
 | 
						|
    override val client: OkHttpClient = super.client.newBuilder()
 | 
						|
        .addInterceptor(SpecificHostRateLimitInterceptor(cdnHost, 1, 2))
 | 
						|
        .build()
 | 
						|
 | 
						|
    override val serverId = "mh01"
 | 
						|
}
 |