Azora: Fix description text (#7219)

* fix: description text

* fix: Shortening the CSS selector
This commit is contained in:
Hellkaros 2025-01-18 15:33:01 -03:00 committed by Draff
parent 4193a3e304
commit dd96377d74
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@ ext {
extClass = '.Azora' extClass = '.Azora'
themePkg = 'madara' themePkg = 'madara'
baseUrl = 'https://azoramoon.com' baseUrl = 'https://azoramoon.com'
overrideVersionCode = 7 overrideVersionCode = 8
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

View File

@ -8,6 +8,7 @@ class Azora : Madara("Azora", "https://azoramoon.com", "ar") {
override val mangaSubString = "series" override val mangaSubString = "series"
override val useNewChapterEndpoint = false override val useNewChapterEndpoint = false
override fun chapterListSelector() = "li.wp-manga-chapter:not(.premium-block)" // Filter fake chapters override fun chapterListSelector() = "li.wp-manga-chapter:not(.premium-block)" // Filter fake chapters
override val mangaDetailsSelectorDescription = ".manga-summary"
override fun chapterFromElement(element: Element): SChapter { override fun chapterFromElement(element: Element): SChapter {
val chapter = SChapter.create() val chapter = SChapter.create()