remove title text (#13579)
* Update Niceoppai.kt * update overrideVersionCode * remove comment code * Update MadaraGenerator.kt * Update Niceoppai.kt * formating code * remaster code and change type extention * remove niceoppai form madaraGenerator * Update src/th/niceoppai/build.gradle Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com> * uppdate search, filter, mange detail * update load chapter * Updated extVersionCode * fix error * fix error * Update src/th/niceoppai/src/eu/kanade/tachiyomi/extension/th/niceoppai/Niceoppai.kt Co-authored-by: Alessandro Jean <14254807+alessandrojean@users.noreply.github.com> * remove title text * Update build.gradle * fix error Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com> Co-authored-by: Alessandro Jean <14254807+alessandrojean@users.noreply.github.com>
This commit is contained in:
parent
19089a3c4f
commit
45b54599c4
|
@ -5,7 +5,7 @@ ext {
|
||||||
extName = 'Niceoppai'
|
extName = 'Niceoppai'
|
||||||
pkgNameSuffix = 'th.niceoppai'
|
pkgNameSuffix = 'th.niceoppai'
|
||||||
extClass = '.Niceoppai'
|
extClass = '.Niceoppai'
|
||||||
extVersionCode = 26
|
extVersionCode = 27
|
||||||
isNsfw = true
|
isNsfw = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -45,8 +45,7 @@ class Niceoppai : ParsedHttpSource() {
|
||||||
override fun popularMangaSelector() = "div.nde"
|
override fun popularMangaSelector() = "div.nde"
|
||||||
override fun popularMangaFromElement(element: Element): SManga {
|
override fun popularMangaFromElement(element: Element): SManga {
|
||||||
val manga = SManga.create()
|
val manga = SManga.create()
|
||||||
manga.title = "title : " + element.select("div.det a").text()
|
manga.title = element.select("div.det a").text()
|
||||||
|
|
||||||
element.select("div.cvr").let {
|
element.select("div.cvr").let {
|
||||||
manga.setUrlWithoutDomain(it.select("div.img_wrp a").attr("href"))
|
manga.setUrlWithoutDomain(it.select("div.img_wrp a").attr("href"))
|
||||||
manga.thumbnail_url = it.select("img").attr("abs:src")
|
manga.thumbnail_url = it.select("img").attr("abs:src")
|
||||||
|
|
Loading…
Reference in New Issue