Colamanga: Fix thumbnail_url (#5784)
This commit is contained in:
parent
3a7bfbbd6a
commit
02e4201f7c
|
@ -2,7 +2,7 @@ plugins {
|
|||
id("lib-multisrc")
|
||||
}
|
||||
|
||||
baseVersionCode = 4
|
||||
baseVersionCode = 5
|
||||
|
||||
dependencies {
|
||||
api(project(":lib:synchrony"))
|
||||
|
|
|
@ -153,7 +153,7 @@ abstract class ColaManga(
|
|||
|
||||
override fun mangaDetailsParse(document: Document) = SManga.create().apply {
|
||||
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()
|
||||
genre = document.select("span.fed-text-muted:contains($genreTitle) ~ a").joinToString { it.text() }
|
||||
description = document
|
||||
|
|
Loading…
Reference in New Issue