|
@@ -89,14 +89,13 @@ class Mangafox : ParsedHttpSource() {
|
|
|
val infoElement = document.select("div#title").first()
|
|
|
val rowElement = infoElement.select("table > tbody > tr:eq(1)").first()
|
|
|
val sideInfoElement = document.select("#series_info").first()
|
|
|
- val licensedElement = document.select("div.warning").first()
|
|
|
|
|
|
val manga = SManga.create()
|
|
|
manga.author = rowElement.select("td:eq(1)").first()?.text()
|
|
|
manga.artist = rowElement.select("td:eq(2)").first()?.text()
|
|
|
manga.genre = rowElement.select("td:eq(3)").first()?.text()
|
|
|
manga.description = infoElement.select("p.summary").first()?.text()
|
|
|
- manga.status = licensedElement?.let { SManga.LICENSED } ?: sideInfoElement.select(".data").first()?.text().orEmpty().let { parseStatus(it) }
|
|
|
+ manga.status = sideInfoElement.select(".data").first()?.text().orEmpty().let { parseStatus(it) }
|
|
|
manga.thumbnail_url = sideInfoElement.select("div.cover > img").first()?.attr("src")
|
|
|
return manga
|
|
|
}
|