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

21 lines
539 B
Kotlin

package eu.kanade.tachiyomi.extension.es.vermanhwas
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.GET
import okhttp3.Request
import java.text.SimpleDateFormat
import java.util.Locale
class VerManhwas : Madara(
"Ver Manhwas",
"https://vermanhwa.es",
"es",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("es")),
) {
override val useNewChapterEndpoint = true
override fun genresRequest(): Request {
return GET("$baseUrl/?s=&post_type=wp-manga", headers)
}
}