Fix being unable to restore backups if there's no categories
This commit is contained in:
parent
f430b6f853
commit
9a082d4df1
1 changed files with 1 additions and 1 deletions
|
@ -215,7 +215,7 @@ class BackupRestoreService : Service() {
|
|||
errors.clear()
|
||||
|
||||
// Restore categories
|
||||
restoreCategories(json.get(CATEGORIES))
|
||||
json.get(CATEGORIES)?.let { restoreCategories(it) }
|
||||
|
||||
// Store source mapping for error messages
|
||||
sourceMapping = BackupRestoreValidator.getSourceMapping(json)
|
||||
|
|
Reference in a new issue