[Source] [MangaOwl] Fix not loading chapter list

pull/76/head
Zakhar Timoshenko 5 years ago committed by Koitharu
parent 527a3cbd09
commit 66ed19ed5a

@ -93,7 +93,7 @@ class MangaOwlRepository(loaderContext: MangaLoaderContext) : RemoteMangaReposit
}, },
chapters = table.select("div.table.table-chapter-list").select("li.list-group-item.chapter_list").asReversed().mapIndexed { i, li -> chapters = table.select("div.table.table-chapter-list").select("li.list-group-item.chapter_list").asReversed().mapIndexed { i, li ->
val a = li.select("a") val a = li.select("a")
val href = a.attr("href").ifEmpty { val href = a.attr("data-href").ifEmpty {
parseFailed("Link is missing") parseFailed("Link is missing")
} }
MangaChapter( MangaChapter(

Loading…
Cancel
Save