FRAnime: JSON title is missing fix (#87)
* added default value to episode title to stop json exception when no title is provided * updated extVersionCode to 12
This commit is contained in:
parent
533531e38d
commit
0879bf2bc7
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
ext {
|
ext {
|
||||||
extName = 'FrAnime'
|
extName = 'FrAnime'
|
||||||
extClass = '.FrAnime'
|
extClass = '.FrAnime'
|
||||||
extVersionCode = 11
|
extVersionCode = 12
|
||||||
isNsfw = true
|
isNsfw = true
|
||||||
}
|
}
|
||||||
apply from: "$rootDir/common.gradle"
|
apply from: "$rootDir/common.gradle"
|
||||||
|
|
|
@ -68,7 +68,7 @@ data class Season(
|
||||||
|
|
||||||
@Serializable
|
@Serializable
|
||||||
data class Episode(
|
data class Episode(
|
||||||
@SerialName("title") val title: String,
|
@SerialName("title") val title: String = "!No Title!",
|
||||||
@SerialName("lang") val languages: EpisodeLanguages,
|
@SerialName("lang") val languages: EpisodeLanguages,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue