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