parent
0f3f79eebd
commit
a76569e5ed
|
@ -5,7 +5,7 @@ ext {
|
|||
appName = 'Tachiyomi: Team X'
|
||||
pkgNameSuffix = 'ar.teamx'
|
||||
extClass = '.TeamX'
|
||||
extVersionCode = 1
|
||||
extVersionCode = 2
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ class TeamX : ParsedHttpSource() {
|
|||
return SManga.create().apply {
|
||||
title = element.select(titleSelector).text()
|
||||
setUrlWithoutDomain(element.select("a").first().attr("href"))
|
||||
thumbnail_url = element.select("img").first().attr("abs:src")
|
||||
thumbnail_url = element.select("img").first().attr("abs:data-src")
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -97,7 +97,7 @@ class TeamX : ParsedHttpSource() {
|
|||
title = info.select("div.col-md-9").text()
|
||||
description = info.select("div.story p").text()
|
||||
genre = info.select("div.genre a").joinToString { it.text() }
|
||||
thumbnail_url = info.select("img").attr("abs:src")
|
||||
thumbnail_url = info.select("img").attr("abs:data-src")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -118,7 +118,7 @@ class TeamX : ParsedHttpSource() {
|
|||
|
||||
override fun pageListParse(document: Document): List<Page> {
|
||||
return document.select("div#translationPageall img").mapIndexed { i, img ->
|
||||
Page(i, "", img.attr("abs:src"))
|
||||
Page(i, "", img.attr("abs:data-src"))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue