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:
Josef František Straka 2024-07-30 03:21:49 +02:00 committed by GitHub
parent 533531e38d
commit 0879bf2bc7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
ext {
extName = 'FrAnime'
extClass = '.FrAnime'
extVersionCode = 11
extVersionCode = 12
isNsfw = true
}
apply from: "$rootDir/common.gradle"

View file

@ -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,
)