Эх сурвалжийг харах

Anilist search fix (#1289)

* fixed issue where some anilist results not showing due to null description.

* remove blank line
Carlos 7 жил өмнө
parent
commit
50e0cb65d9

+ 2 - 3
app/src/main/java/eu/kanade/tachiyomi/data/track/anilist/AnilistModels.kt

@@ -14,7 +14,7 @@ data class ALManga(
         val id: Int,
         val title_romaji: String,
         val image_url_lge: String,
-        val description: String,
+        val description: String?,
         val type: String,
         val publishing_status: String,
         val start_date_fuzzy: String,
@@ -25,7 +25,7 @@ data class ALManga(
         title = title_romaji
         total_chapters = [email protected]_chapters
         cover_url = image_url_lge
-        summary = description
+        summary = description ?: ""
         tracking_url = AnilistApi.mangaUrl(remote_id)
         publishing_status = [email protected]_status
         publishing_type = type
@@ -39,7 +39,6 @@ data class ALManga(
                 start_date_fuzzy.orEmpty()
             }
         }
-
     }
 }