migrating the previous orphaned rooms settings in order to fix the inconsistent value
- only uses the previous value if the key exists, otherwise we end up defaulting to true instead of false (which the preferences screen expects) - manually deletes the key after migrating the value
This commit is contained in:
parent
6a2a69ada6
commit
bdc370474e
1
changelog.d/6510.bugfix
Normal file
1
changelog.d/6510.bugfix
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fixes inconsistency with rooms within spaces showing or disappearing from home
|
@ -1020,20 +1020,32 @@ class VectorPreferences @Inject constructor(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun labsSpacesOnlyOrphansInHome(): Boolean {
|
|
||||||
return defaultPrefs.getBoolean(SETTINGS_LABS_SPACES_HOME_AS_ORPHAN, false)
|
|
||||||
}
|
|
||||||
|
|
||||||
fun labsAutoReportUISI(): Boolean {
|
fun labsAutoReportUISI(): Boolean {
|
||||||
return defaultPrefs.getBoolean(SETTINGS_LABS_AUTO_REPORT_UISI, false)
|
return defaultPrefs.getBoolean(SETTINGS_LABS_AUTO_REPORT_UISI, false)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun prefSpacesShowAllRoomInHome(): Boolean {
|
fun prefSpacesShowAllRoomInHome(): Boolean {
|
||||||
return defaultPrefs.getBoolean(
|
val defaultValue = false
|
||||||
SETTINGS_PREF_SPACE_SHOW_ALL_ROOM_IN_HOME,
|
return when {
|
||||||
// migration of old property
|
defaultPrefs.contains(SETTINGS_PREF_SPACE_SHOW_ALL_ROOM_IN_HOME) -> {
|
||||||
!labsSpacesOnlyOrphansInHome()
|
defaultPrefs.getBoolean(SETTINGS_PREF_SPACE_SHOW_ALL_ROOM_IN_HOME, defaultValue)
|
||||||
)
|
}
|
||||||
|
defaultPrefs.contains(SETTINGS_LABS_SPACES_HOME_AS_ORPHAN) -> migrateOrphansInSpacesToShowAllInHome()
|
||||||
|
else -> defaultValue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun migrateOrphansInSpacesToShowAllInHome(): Boolean {
|
||||||
|
val showAllRoomsInHome = !labsSpacesOnlyOrphansInHome()
|
||||||
|
defaultPrefs.edit {
|
||||||
|
putBoolean(SETTINGS_PREF_SPACE_SHOW_ALL_ROOM_IN_HOME, showAllRoomsInHome)
|
||||||
|
remove(SETTINGS_LABS_SPACES_HOME_AS_ORPHAN)
|
||||||
|
}
|
||||||
|
return showAllRoomsInHome
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun labsSpacesOnlyOrphansInHome(): Boolean {
|
||||||
|
return defaultPrefs.getBoolean(SETTINGS_LABS_SPACES_HOME_AS_ORPHAN, false)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user