Fix Viz thumbnails (#3570)

This commit is contained in:
Unlocked 2020-06-19 01:54:00 -07:00 committed by GitHub
parent fba57fdcb3
commit ed4f4c4a85
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 {
appName = 'Tachiyomi: VIZ Shonen Jump'
pkgNameSuffix = 'en.vizshonenjump'
extClass = '.VizShonenJump'
extVersionCode = 1
extVersionCode = 2
libVersion = '1.2'
}

View File

@ -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")
}