Fix crash with restoring backups
This commit is contained in:
parent
301500dcef
commit
326489fef3
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ open class MangaImpl : Manga {
|
|||
|
||||
// SY -->
|
||||
private val customManga: CustomMangaInfo?
|
||||
get() = getCustomMangaInfo.get(id!!)
|
||||
get() = id?.let { getCustomMangaInfo.get(it) }
|
||||
|
||||
override var title: String
|
||||
get() = if (favorite) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue