Riztard Lanthorn f1e165dac0
add alternative name, cleaning some code, add icon (#6484)
* MangaSee/Life: add alt name, cleaning

add alternative name to manga description
cleaning series type code

* WPMangaReader: add alt name, cleaning

add alternative name to manga description
cleaning series type code

* FMReader: add alt name

add alternative name to manga description
remove author name if its "Updating"

* MangaPark: add alt name

add alternative name to manga description

* WPMangaStream: add alt name, cleaning

add alternative name to manga description
cleaning series type code

* MangaBox: add alt name

add alternative name to manga description

* MaidManga: add alt name, cleaning

add alternative name to manga description
cleaning series type code

* Komiku: cleaning code

cleaning series type code

* ManhuaID: cleaning code

cleaning series type code

* cleaning, tweaking

* add 18+

* add some source icon in fmreader

Co-Authored-By: Ankit Singh <as280093@gmail.com>

* add some source icon in wpmangareader

Co-Authored-By: Ankit Singh <as280093@gmail.com>

* add some source icon in wpmangastream

Co-Authored-By: Ankit Singh <as280093@gmail.com>

* Ngomik: fix thumbnail and chapter images

Co-authored-by: Ankit Singh <as280093@gmail.com>
2021-04-13 08:10:49 -04:00

20 lines
655 B
Kotlin

package eu.kanade.tachiyomi.extension.en.manhwa18
import eu.kanade.tachiyomi.annotations.Nsfw
import eu.kanade.tachiyomi.multisrc.fmreader.FMReader
import eu.kanade.tachiyomi.network.GET
import eu.kanade.tachiyomi.source.model.Page
import okhttp3.Request
@Nsfw
class Manhwa18 : FMReader("Manhwa18", "https://manhwa18.com", "en") {
override fun imageRequest(page: Page): Request {
return if (page.imageUrl!!.contains("manhwa18")) {
super.imageRequest(page)
} else {
GET(page.imageUrl!!, headers.newBuilder().removeAll("Referer").build())
}
}
override fun getGenreList() = getAdultGenreList()
}