ManhwaIndo: update domain & deduplicate images (#4513)

This commit is contained in:
AwkwardPeak7 2024-08-09 10:32:09 +05:00 committed by Draff
parent a14bf9cc8b
commit 48b0101075
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 9 additions and 5 deletions

View File

@ -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
}

View File

@ -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!!
}
}