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

View File

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