Azora: Fix description text (#7219)
* fix: description text * fix: Shortening the CSS selector
This commit is contained in:
parent
4193a3e304
commit
dd96377d74
|
@ -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"
|
||||||
|
|
|
@ -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()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue