fix(en/kickassanime): fix for episodes without titles (#1936)

This commit is contained in:
Secozzi
2023-07-21 10:01:52 +00:00
committed by GitHub
parent 72fe14e618
commit c30ec4cefe
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ ext {
pkgNameSuffix = 'en.kickassanime'
extClass = '.KickAssAnime'
libVersion = '13'
extVersionCode = 30
extVersionCode = 31
}
dependencies {

View File

@ -56,7 +56,7 @@ data class EpisodeResponseDto(
@Serializable
data class EpisodeDto(
val slug: String,
val title: String,
val title: String? = "",
val episode_string: String,
)
}