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:
D@ddyBunz 2022-09-27 04:43:52 +07:00 committed by GitHub
parent 19089a3c4f
commit 45b54599c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View File

@ -5,8 +5,8 @@ ext {
extName = 'Niceoppai'
pkgNameSuffix = 'th.niceoppai'
extClass = '.Niceoppai'
extVersionCode = 26
extVersionCode = 27
isNsfw = true
}
apply from: "$rootDir/common.gradle"
apply from: "$rootDir/common.gradle"

View File

@ -45,8 +45,7 @@ class Niceoppai : ParsedHttpSource() {
override fun popularMangaSelector() = "div.nde"
override fun popularMangaFromElement(element: Element): SManga {
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 {
manga.setUrlWithoutDomain(it.select("div.img_wrp a").attr("href"))
manga.thumbnail_url = it.select("img").attr("abs:src")