Knight No Scanlation: Fix selector (#7779)

fix selector
This commit is contained in:
dngonz 2025-02-24 15:08:36 +01:00 committed by Draff
parent 7fbf5e8af6
commit 98b871591e
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 5 additions and 1 deletions

View File

@ -3,7 +3,7 @@ ext {
extClass = '.KnightNoScanlation' extClass = '.KnightNoScanlation'
themePkg = 'madara' themePkg = 'madara'
baseUrl = 'https://kns.cookni.net' baseUrl = 'https://kns.cookni.net'
overrideVersionCode = 4 overrideVersionCode = 5
isNsfw = true isNsfw = true
} }

View File

@ -25,4 +25,8 @@ class KnightNoScanlation : Madara(
override val useNewChapterEndpoint = true override val useNewChapterEndpoint = true
override val mangaDetailsSelectorStatus = "div.post-content_item:contains(Status) div.summary-content" override val mangaDetailsSelectorStatus = "div.post-content_item:contains(Status) div.summary-content"
override fun popularMangaSelector() = "div.manga__item"
override val popularMangaUrlSelector = "div.post-title a"
} }