Replace bad image url with the logo in mangafox. Related with #626

This commit is contained in:
len 2017-01-04 19:12:47 +01:00
parent 2c8790c545
commit 49d0e06704

View File

@ -137,7 +137,14 @@ class Mangafox(override val id: Int) : ParsedOnlineSource() {
override fun pageListParse(document: Document, pages: MutableList<Page>) {
}
override fun imageUrlParse(document: Document) = document.getElementById("image").attr("src")
override fun imageUrlParse(document: Document): String {
val url = document.getElementById("image").attr("src")
return if ("compressed?token=" !in url) {
url
} else {
"http://mangafox.me/media/logo.png"
}
}
private data class ListValue(val name: String, val value: String) {
override fun toString(): String = name