Alessandro Jean 8e3efc0a19
Fix the no results found in Madara sources due to a theme update (#16167)
Fix the no results found in Madara sources due to a theme update.
2023-04-24 23:06:34 -03:00

14 lines
491 B
Kotlin

package eu.kanade.tachiyomi.extension.en.topmanhua
import eu.kanade.tachiyomi.multisrc.madara.Madara
import okhttp3.Headers
import java.text.SimpleDateFormat
import java.util.Locale
class TopManhua : Madara("Top Manhua", "https://topmanhua.com", "en", SimpleDateFormat("MM/dd/yy", Locale.US)) {
override fun headersBuilder(): Headers.Builder = super.headersBuilder().add("Referer", baseUrl)
// The website does not flag the content.
override val filterNonMangaItems = false
}