Alessandro Jean 9e8cef623b
Fix search limited to 10 results in Madara sources (#11359)
* Fix search limited to 10 results in Madara sources.

* Fix wrong posts_per_page key in search.
2022-04-07 12:38:03 -04:00

19 lines
456 B
Kotlin

package eu.kanade.tachiyomi.extension.en.toonily
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class Toonily : Madara(
"Toonily",
"https://toonily.com",
"en",
SimpleDateFormat("MMM d, yy", Locale.US)
) {
// The source customized the Madara theme and broke the filter.
override val filterNonMangaItems = false
override val useNewChapterEndpoint: Boolean = true
}