Filter out empty source preferences when creating backups
This commit is contained in:
parent
a1e84911be
commit
32c3269291
1 changed files with 1 additions and 0 deletions
|
@ -37,6 +37,7 @@ class PreferenceBackupCreator(
|
|||
.withPrivatePreferences(includePrivatePreferences),
|
||||
)
|
||||
}
|
||||
.filter { it.prefs.isNotEmpty() }
|
||||
}
|
||||
|
||||
@Suppress("UNCHECKED_CAST")
|
||||
|
|
Reference in a new issue