[Ru]Mangahub. Fix detail thumbnail (#7840)

This commit is contained in:
Pavka 2021-06-24 16:00:52 +03:00 committed by GitHub
parent 619f9986a6
commit e08bbfce14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ ext {
extName = 'Mangahub' extName = 'Mangahub'
pkgNameSuffix = 'ru.mangahub' pkgNameSuffix = 'ru.mangahub'
extClass = '.Mangahub' extClass = '.Mangahub'
extVersionCode = 10 extVersionCode = 11
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -83,7 +83,7 @@ open class Mangahub : ParsedHttpSource() {
manga.genre = document.select("div.tag").text().replace(" ", ", ") manga.genre = document.select("div.tag").text().replace(" ", ", ")
manga.description = document.select("div.markdown-style").text() manga.description = document.select("div.markdown-style").text()
manga.status = parseStatus(document.select("div.sticky-top span.status-label").toString()) manga.status = parseStatus(document.select("div.sticky-top span.status-label").toString())
manga.thumbnail_url = document.select("img.cover-detail-img").attr("src") manga.thumbnail_url = document.select("img.cover-detail").attr("src")
return manga return manga
} }