ComicExtra - add genre details (#3278)
This commit is contained in:
parent
07075bd2fe
commit
3fcc0a9dca
|
@ -5,7 +5,7 @@ ext {
|
|||
appName = 'Tachiyomi: ComicExtra'
|
||||
pkgNameSuffix = 'en.comicextra'
|
||||
extClass = '.ComicExtra'
|
||||
extVersionCode = 5
|
||||
extVersionCode = 6
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -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() }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue