Skip to content

Commit

Permalink
FRAnime: JSON title is missing fix (#87)
Browse files Browse the repository at this point in the history
* added default value to episode title to stop json exception when no title is provided

* updated extVersionCode to 12
  • Loading branch information
JosefFStraka authored Jul 30, 2024
1 parent 533531e commit 0879bf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/fr/franime/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'FrAnime'
extClass = '.FrAnime'
extVersionCode = 11
extVersionCode = 12
isNsfw = true
}
apply from: "$rootDir/common.gradle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

Expand Down

0 comments on commit 0879bf2

Please sign in to comment.