Fix nullability of MAL authors breaking search (#2834)

One of these days I'll get through a tracker change without
nullability problems...
This commit is contained in:
MajorTanya
2026-01-07 14:30:44 +01:00
committed by GitHub
parent bd5c4d48f9
commit edcf84d902
@@ -18,7 +18,7 @@ data class MALManga(
val mediaType: String,
@SerialName("start_date")
val startDate: String?,
val authors: List<MALAuthorNode>,
val authors: List<MALAuthorNode> = emptyList(),
)
@Serializable