Komikindoid fix (#8124)

* Update KomikIndoID.kt

* update icon path

* update icon path

* remove old icon

* Update build.gradle
This commit is contained in:
HaruSasaki 2021-07-15 20:47:06 +07:00 committed by GitHub
parent c7ad5b9b76
commit 2c11cbfcd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'KomikIndoID' extName = 'KomikIndoID'
pkgNameSuffix = 'id.komikindoid' pkgNameSuffix = 'id.komikindoid'
extClass = '.KomikIndoID' extClass = '.KomikIndoID'
extVersionCode = 1 extVersionCode = 2
libVersion = '1.2' libVersion = '1.2'
} }

View File

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

Before

Width:  |  Height:  |  Size: 7.4 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -47,9 +47,9 @@ class KomikIndoID : ParsedHttpSource() {
override fun searchMangaFromElement(element: Element): SManga { override fun searchMangaFromElement(element: Element): SManga {
val manga = SManga.create() val manga = SManga.create()
manga.thumbnail_url = element.select("div.limit img").attr("src") manga.thumbnail_url = element.select("div.limit img").attr("src")
manga.title = element.select("div.tt h4").text()
element.select("div.animposx > a").first().let { element.select("div.animposx > a").first().let {
manga.setUrlWithoutDomain(it.attr("href")) manga.setUrlWithoutDomain(it.attr("href"))
manga.title = it.attr("title")
} }
return manga return manga
} }