mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 22:37:56 +01:00 
			
		
		
		
	Replace bad image url with the logo in mangafox. Related with #626
This commit is contained in:
		| @@ -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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user