Fix bad CSS selector at GM. (#8763)

This commit is contained in:
Alessandro Jean 2021-08-23 08:20:07 -03:00 committed by GitHub
parent ab391bff6c
commit 61cda66933
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 = 'Golden Mangás' extName = 'Golden Mangás'
pkgNameSuffix = 'pt.goldenmangas' pkgNameSuffix = 'pt.goldenmangas'
extClass = '.GoldenMangas' extClass = '.GoldenMangas'
extVersionCode = 11 extVersionCode = 12
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -106,7 +106,7 @@ class GoldenMangas : ParsedHttpSource() {
genre = secondColumn.select("h5:contains(Genero) a") genre = secondColumn.select("h5:contains(Genero) a")
.filter { it.text().isNotEmpty() } .filter { it.text().isNotEmpty() }
.joinToString { it.text() } .joinToString { it.text() }
status = secondColumn.select("h5:contain(Status) a").text().toStatus() status = secondColumn.select("h5:contains(Status) a").text().toStatus()
description = document.select("#manga_capitulo_descricao").text() description = document.select("#manga_capitulo_descricao").text()
thumbnail_url = firstColumn.attr("abs:src") thumbnail_url = firstColumn.attr("abs:src")
} }