Fix Viz thumbnails (#3570)
This commit is contained in:
parent
fba57fdcb3
commit
ed4f4c4a85
|
@ -5,7 +5,7 @@ ext {
|
|||
appName = 'Tachiyomi: VIZ Shonen Jump'
|
||||
pkgNameSuffix = 'en.vizshonenjump'
|
||||
extClass = '.VizShonenJump'
|
||||
extVersionCode = 1
|
||||
extVersionCode = 2
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ class VizShonenJump : ParsedHttpSource() {
|
|||
|
||||
override fun popularMangaFromElement(element: Element): SManga = SManga.create().apply {
|
||||
title = element.select("div.pad-x-rg").first().text()
|
||||
thumbnail_url = element.select("div.pos-r img.disp-bl").first()?.attr("src")
|
||||
thumbnail_url = element.select("div.pos-r img.disp-bl").first()?.attr("data-original")
|
||||
url = element.attr("href")
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue