ManhwaZ: add word for completedStatusList (#10537)

This commit is contained in:
are-are-are 2025-09-16 08:32:16 +07:00 committed by Draff
parent 64990abd92
commit 12ac787f8f
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ plugins {
id("lib-multisrc")
}
baseVersionCode = 1
baseVersionCode = 2
dependencies {
api(project(":lib:i18n"))

View File

@ -113,7 +113,7 @@ abstract class ManhwaZ(
override fun searchMangaNextPageSelector(): String? = latestUpdatesNextPageSelector()
private val ongoingStatusList = listOf("ongoing", "đang ra")
private val completedStatusList = listOf("completed", "hoàn thành")
private val completedStatusList = listOf("completed", "hoàn thành", "Truyện Full")
override fun mangaDetailsParse(document: Document) = SManga.create().apply {
val statusText = document.selectFirst("div.summary-heading:contains($mangaDetailsStatusHeading) + div.summary-content")