MangaGeko: fix some synopsis issue (#10813)

This commit is contained in:
Luqman 2025-10-03 04:52:14 +07:00 committed by Draff
parent 2f2671757e
commit 258874dc70
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'MangaGeko'
extClass = '.MangaRawClub'
extVersionCode = 25
extVersionCode = 26
isNsfw = true
}

View File

@ -122,7 +122,7 @@ class MangaRawClub : ParsedHttpSource() {
author = document.selectFirst(".author a")?.attr("title")?.trim()?.takeIf { it.lowercase() != "updating" }
description = buildString {
document.selectFirst(".description")?.ownText()?.substringAfter("Summary is")?.trim()?.let {
document.selectFirst(".description")?.text()?.substringAfter("Summary is")?.trim()?.let {
append(it)
}
document.selectFirst(".alternative-title")?.ownText()?.trim()?.takeIf { it.isNotEmpty() && it.lowercase() != "updating" }?.let {