Update src/main/kotlin/org/koitharu/kotatsu/parsers/site/fr/ScansMangasMe.kt

Co-authored-by: Koitharu <nvasya95@gmail.com>
devi 3 years ago committed by GitHub
parent 826563694e
commit bfea5b314e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -143,7 +143,7 @@ internal class ScansMangasMe(context: MangaLoaderContext) :
private fun getChapters(doc: Document): List<MangaChapter> { private fun getChapters(doc: Document): List<MangaChapter> {
return doc.body().select("ul#chapter_list li").mapChapters(reversed = true) { i, li -> return doc.body().requireElementById("chapter_list").select("li").mapChapters(reversed = true) { i, li ->
val a = li.selectFirstOrThrow("a") val a = li.selectFirstOrThrow("a")
val href = a.attrAsRelativeUrl("href") val href = a.attrAsRelativeUrl("href")
MangaChapter( MangaChapter(

Loading…
Cancel
Save