Added fallback if manga description is null (#13801)
This commit is contained in:
parent
1e99b26dff
commit
740da29bc5
|
@ -6,7 +6,7 @@ ext {
|
|||
extName = 'Comick.fun'
|
||||
pkgNameSuffix = 'all.comickfun'
|
||||
extClass = '.ComickFunFactory'
|
||||
extVersionCode = 16
|
||||
extVersionCode = 17
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ data class Comic(
|
|||
val id: Int,
|
||||
val title: String,
|
||||
val slug: String,
|
||||
val desc: String,
|
||||
val desc: String = "N/A",
|
||||
val status: Int,
|
||||
val chapter_count: Int?,
|
||||
val cover_url: String
|
||||
|
|
Loading…
Reference in New Issue