Added fallback if manga description is null (#13801)

This commit is contained in:
Sergio Malagon 2022-10-10 18:22:12 +02:00 committed by GitHub
parent 1e99b26dff
commit 740da29bc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ ext {
extName = 'Comick.fun' extName = 'Comick.fun'
pkgNameSuffix = 'all.comickfun' pkgNameSuffix = 'all.comickfun'
extClass = '.ComickFunFactory' extClass = '.ComickFunFactory'
extVersionCode = 16 extVersionCode = 17
isNsfw = true isNsfw = true
} }

View File

@ -34,7 +34,7 @@ data class Comic(
val id: Int, val id: Int,
val title: String, val title: String,
val slug: String, val slug: String,
val desc: String, val desc: String = "N/A",
val status: Int, val status: Int,
val chapter_count: Int?, val chapter_count: Int?,
val cover_url: String val cover_url: String