Fix MangaLib Title Fetch (#2175)

Fix MangaLib Title Fetch
This commit is contained in:
happywillow0 2020-02-01 18:59:42 -05:00 committed by GitHub
parent a76569e5ed
commit 55e203101b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: MangaLib'
pkgNameSuffix = 'ru.libmanga'
extClass = '.LibManga'
extVersionCode = 9
extVersionCode = 10
libVersion = '1.2'
}

View File

@ -179,7 +179,7 @@ class LibManga : ConfigurableSource, HttpSource() {
return manga
}
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.author = body.select(".info-list__row:nth-child(2) > a").text()
manga.artist = body.select(".info-list__row:nth-child(3) > a").text()