forked from AlmightyHak/extensions-source
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 {
|
||||
extName = 'FrAnime'
|
||||
extClass = '.FrAnime'
|
||||
extVersionCode = 11
|
||||
extVersionCode = 12
|
||||
isNsfw = true
|
||||
}
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
|
|
@ -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