Skip to content
This repository has been archived by the owner on Oct 3, 2022. It is now read-only.

Commit

Permalink
Add default values to backups
Browse files Browse the repository at this point in the history
  • Loading branch information
jobobby04 committed Aug 18, 2022
1 parent f3b8c59 commit 4115cae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ data class BackupNovelEntity(
val imageURL: String = "",
val chapters: List<BackupChapterEntity> = emptyList(),
val settings: BackupNovelSettingEntity = BackupNovelSettingEntity(),
val categories: List<Int>
val categories: List<Int> = emptyList()
)
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ data class FleshedBackupEntity(
val version: String = VERSION_BACKUP,
val repos: List<BackupRepositoryEntity> = emptyList(),
val extensions: List<BackupExtensionEntity> = emptyList(),
val categories: List<BackupCategoryEntity>
val categories: List<BackupCategoryEntity> = emptyList()
)

@Serializable
Expand Down

0 comments on commit 4115cae

Please sign in to comment.