ManhwaIndo: update domain & deduplicate images (#4513)
This commit is contained in:
parent
a14bf9cc8b
commit
48b0101075
|
@ -2,8 +2,8 @@ ext {
|
|||
extName = 'ManhwaIndo'
|
||||
extClass = '.ManhwaIndo'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://manhwaindo.id'
|
||||
overrideVersionCode = 4
|
||||
baseUrl = 'https://manhwaindo.net'
|
||||
overrideVersionCode = 5
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
|
|
|
@ -1,17 +1,21 @@
|
|||
package eu.kanade.tachiyomi.extension.id.manhwaindo
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import okhttp3.Response
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class ManhwaIndo : MangaThemesia(
|
||||
"Manhwa Indo",
|
||||
"https://manhwaindo.id",
|
||||
"https://manhwaindo.net",
|
||||
"id",
|
||||
"/series",
|
||||
SimpleDateFormat("MMMM dd, yyyy", Locale.US),
|
||||
) {
|
||||
override val seriesTitleSelector = ".ts-breadcrumb li:last-child span"
|
||||
|
||||
override val hasProjectPage = true
|
||||
|
||||
override fun pageListParse(response: Response) =
|
||||
super.pageListParse(response).distinctBy {
|
||||
it.imageUrl!!
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue