Komikindoid fix (#8124)
* Update KomikIndoID.kt * update icon path * update icon path * remove old icon * Update build.gradle
|
@ -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'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
|
@ -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
|
||||||
}
|
}
|
||||||
|
|