SayHentai: Update domain and fix popularManga (#3240)

* Update domain

* Fix popularManga
This commit is contained in:
Chopper 2024-05-26 05:00:06 -03:00 committed by Draff
parent c900e6c0a0
commit be2daf0c4a
2 changed files with 6 additions and 4 deletions

View File

@ -2,8 +2,8 @@ ext {
extName = "SayHentai" extName = "SayHentai"
extClass = ".SayHentai" extClass = ".SayHentai"
themePkg = "manhwaz" themePkg = "manhwaz"
baseUrl = "https://sayhentai.pro" baseUrl = "https://sayhentai.co"
overrideVersionCode = 4 overrideVersionCode = 5
isNsfw = true isNsfw = true
} }

View File

@ -4,8 +4,10 @@ import eu.kanade.tachiyomi.multisrc.manhwaz.ManhwaZ
class SayHentai : ManhwaZ( class SayHentai : ManhwaZ(
"SayHentai", "SayHentai",
"https://sayhentai.pro", "https://sayhentai.co",
"vi", "vi",
mangaDetailsAuthorHeading = "Tác giả", mangaDetailsAuthorHeading = "Tác giả",
mangaDetailsStatusHeading = "Trạng thái", mangaDetailsStatusHeading = "Trạng thái",
) ) {
override fun popularMangaSelector() = "#slide-top > .item:contains(a)"
}