ComicExtra - add genre details (#3278)

This commit is contained in:
Mike 2020-05-22 22:19:24 -04:00 committed by GitHub
parent 07075bd2fe
commit 3fcc0a9dca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: ComicExtra'
pkgNameSuffix = 'en.comicextra'
extClass = '.ComicExtra'
extVersionCode = 5
extVersionCode = 6
libVersion = '1.2'
}

View File

@ -90,6 +90,7 @@ class ComicExtra : ParsedHttpSource() {
status = parseStatus(document.select("dt:contains(Status:) + dd").text())
author = document.select("dt:contains(Author:) + dd").text()
description = document.select("div#film-content").text()
genre = document.select("dt.movie-dt:contains(Genres:) + dd a").joinToString { it.text() }
}
}