
* 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>
14 lines
556 B
Kotlin
14 lines
556 B
Kotlin
package eu.kanade.tachiyomi.extension.en.manhwasmut
|
|
|
|
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 ManhwaSmut : FMReader("ManhwaSmut", "https://manhwasmut.com", "en") {
|
|
private val noReferer = headersBuilder().removeAll("Referer").build()
|
|
override fun imageRequest(page: Page): Request = GET(page.imageUrl!!, if (page.imageUrl!!.contains("toonily")) noReferer else headers)
|
|
}
|