parent
a76569e5ed
commit
55e203101b
|
@ -5,7 +5,7 @@ ext {
|
||||||
appName = 'Tachiyomi: MangaLib'
|
appName = 'Tachiyomi: MangaLib'
|
||||||
pkgNameSuffix = 'ru.libmanga'
|
pkgNameSuffix = 'ru.libmanga'
|
||||||
extClass = '.LibManga'
|
extClass = '.LibManga'
|
||||||
extVersionCode = 9
|
extVersionCode = 10
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -179,7 +179,7 @@ class LibManga : ConfigurableSource, HttpSource() {
|
||||||
return manga
|
return manga
|
||||||
}
|
}
|
||||||
val body = document.select("div.section__body").first()
|
val body = document.select("div.section__body").first()
|
||||||
manga.title = body.select(".manga__title").text()
|
manga.title = document.select(".manga-title h1").text()
|
||||||
manga.thumbnail_url = body.select(".manga__cover").attr("src")
|
manga.thumbnail_url = body.select(".manga__cover").attr("src")
|
||||||
manga.author = body.select(".info-list__row:nth-child(2) > a").text()
|
manga.author = body.select(".info-list__row:nth-child(2) > a").text()
|
||||||
manga.artist = body.select(".info-list__row:nth-child(3) > a").text()
|
manga.artist = body.select(".info-list__row:nth-child(3) > a").text()
|
||||||
|
|
Loading…
Reference in New Issue