
* Rewrite MMRCMS * linting * Mangas.in: Fix latest, search by query, manga details * use HashSet instead of Set for manga detail keys * use buildList for building filter list * mangas.in: Copy over changes to MangasInDto * Use a better metric for determining if filter fetching failed. Also merged types and tags. * Move to using named constructor parameters instead of open vals This improves the discoverability of configurable stuff. * use normal try/catch instead of runCatching * Elaborate on the reason for not using Nothing * Make most configuration options private * forbidden -> useNamedArgumentsBelow * Address lint failures * Close the thingies * <:shitting:1130237162105876490> * <:shitting:1130237162105876490>
12 lines
361 B
Kotlin
12 lines
361 B
Kotlin
package eu.kanade.tachiyomi.extension.bg.utsukushii
|
|
|
|
import eu.kanade.tachiyomi.multisrc.mmrcms.MMRCMS
|
|
import eu.kanade.tachiyomi.network.GET
|
|
import okhttp3.Request
|
|
|
|
class Utsukushii : MMRCMS("Utsukushii", "https://utsukushii-bg.com", "bg") {
|
|
override fun popularMangaRequest(page: Int): Request {
|
|
return GET("$baseUrl/manga-list", headers)
|
|
}
|
|
}
|