Mitaki: fix no results found error (#9822)

This commit is contained in:
whitebeardhelper 2025-07-28 07:42:54 -03:00 committed by Draff
parent 92edcff4a2
commit 24591d0836
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'Mitaku'
extClass = '.Mitaku'
extVersionCode = 2
extVersionCode = 3
isNsfw = true
}

View File

@ -26,7 +26,7 @@ class Mitaku : ParsedHttpSource() {
// ============================== Popular ===============================
override fun popularMangaRequest(page: Int) = GET("$baseUrl/category/ero-cosplay/page/$page", headers)
override fun popularMangaSelector() = "div.cm-primary article"
override fun popularMangaSelector() = "div.article-container article"
override fun popularMangaFromElement(element: Element) = SManga.create().apply {
setUrlWithoutDomain(element.selectFirst("a")!!.absUrl("href"))