mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-24 11:22:37 +01:00
Colamanga: Fix thumbnail_url (#5784)
This commit is contained in:
parent
46847b17cc
commit
c37b370553
@ -2,7 +2,7 @@ plugins {
|
|||||||
id("lib-multisrc")
|
id("lib-multisrc")
|
||||||
}
|
}
|
||||||
|
|
||||||
baseVersionCode = 4
|
baseVersionCode = 5
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api(project(":lib:synchrony"))
|
api(project(":lib:synchrony"))
|
||||||
|
@ -153,7 +153,7 @@ abstract class ColaManga(
|
|||||||
|
|
||||||
override fun mangaDetailsParse(document: Document) = SManga.create().apply {
|
override fun mangaDetailsParse(document: Document) = SManga.create().apply {
|
||||||
title = document.selectFirst("h1.fed-part-eone")!!.text()
|
title = document.selectFirst("h1.fed-part-eone")!!.text()
|
||||||
thumbnail_url = document.selectFirst("a.fed-list-pics")?.absUrl("data-orignal")
|
thumbnail_url = document.selectFirst("a.fed-list-pics")?.absUrl("data-original")
|
||||||
author = document.selectFirst("span.fed-text-muted:contains($authorTitle) + a")?.text()
|
author = document.selectFirst("span.fed-text-muted:contains($authorTitle) + a")?.text()
|
||||||
genre = document.select("span.fed-text-muted:contains($genreTitle) ~ a").joinToString { it.text() }
|
genre = document.select("span.fed-text-muted:contains($genreTitle) ~ a").joinToString { it.text() }
|
||||||
description = document
|
description = document
|
||||||
|
Loading…
Reference in New Issue
Block a user