mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-04 08:08:55 +01:00 
			
		
		
		
	Ignore error when cover is missing in Kitsu search results (fixes #4334)
This commit is contained in:
		@@ -19,7 +19,12 @@ class KitsuSearchManga(obj: JsonObject) {
 | 
			
		||||
    private val canonicalTitle = obj["canonicalTitle"]!!.jsonPrimitive.content
 | 
			
		||||
    private val chapterCount = obj["chapterCount"]?.jsonPrimitive?.intOrNull
 | 
			
		||||
    val subType = obj["subtype"]?.jsonPrimitive?.contentOrNull
 | 
			
		||||
    val original = obj["posterImage"]?.jsonObject?.get("original")?.jsonPrimitive?.content
 | 
			
		||||
    val original = try {
 | 
			
		||||
        obj["posterImage"]?.jsonObject?.get("original")?.jsonPrimitive?.content
 | 
			
		||||
    } catch (e: IllegalArgumentException) {
 | 
			
		||||
        // posterImage is sometimes a jsonNull object instead
 | 
			
		||||
        null
 | 
			
		||||
    }
 | 
			
		||||
    private val synopsis = obj["synopsis"]!!.jsonPrimitive.content
 | 
			
		||||
    private var startDate = obj["startDate"]?.jsonPrimitive?.contentOrNull?.let {
 | 
			
		||||
        val outputDf = SimpleDateFormat("yyyy-MM-dd", Locale.US)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user