added default value to episode title to stop json exception when no title is provided
This commit is contained in:
parent
f2ab3c6ee2
commit
fe044e7d4e
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ data class Season(
|
|||
|
||||
@Serializable
|
||||
data class Episode(
|
||||
@SerialName("title") val title: String,
|
||||
@SerialName("title") val title: String = "!No Title!",
|
||||
@SerialName("lang") val languages: EpisodeLanguages,
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue