Tapas - Add Thumbnail to Details (#2544)
This commit is contained in:
parent
9f706ad4bc
commit
3eae663d92
|
@ -5,7 +5,7 @@ ext {
|
||||||
appName = 'Tachiyomi: Tapas'
|
appName = 'Tachiyomi: Tapas'
|
||||||
pkgNameSuffix = 'en.tapastic'
|
pkgNameSuffix = 'en.tapastic'
|
||||||
extClass = '.Tapastic'
|
extClass = '.Tapastic'
|
||||||
extVersionCode = 6
|
extVersionCode = 7
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -95,6 +95,7 @@ class Tapastic : ParsedHttpSource() {
|
||||||
description = document.select(".js-series-description").text().trim()
|
description = document.select(".js-series-description").text().trim()
|
||||||
genre = document.select("div.info__genre a, div.item__genre a")
|
genre = document.select("div.info__genre a, div.item__genre a")
|
||||||
.joinToString(", ") { it.text() }
|
.joinToString(", ") { it.text() }
|
||||||
|
thumbnail_url = document.select("div.header__thumb img").attr("src")
|
||||||
}
|
}
|
||||||
|
|
||||||
//Chapters
|
//Chapters
|
||||||
|
|
Loading…
Reference in New Issue