Fix missing images in search on MW. (#10375)

This commit is contained in:
Alessandro Jean 2022-01-06 14:22:53 -03:00 committed by GitHub
parent 08452e92a7
commit 01ecbdc833
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Mundo Webtoon'
pkgNameSuffix = 'pt.mundowebtoon'
extClass = '.MundoWebtoon'
extVersionCode = 2
extVersionCode = 3
}
dependencies {

View File

@ -84,7 +84,7 @@ class MundoWebtoon : ParsedHttpSource() {
override fun searchMangaFromElement(element: Element): SManga = SManga.create().apply {
title = element.select("span.andro_product-title").text().withoutLanguage()
thumbnail_url = element.select("div.andro_product-thumb img").attr("abs:src")
thumbnail_url = element.select("div.andro_product-thumb img").attr("abs:data-src")
setUrlWithoutDomain(element.select("div.andro_product-thumb > a").attr("abs:href"))
}