fix default post privacy setting sometimes showing the value of the wrong account (#4564)
Without the `isPersistent = false` flag the preference is saved to SharedPreferences in addition to the account and overrides the shown value. So it would always show the value of the last account it was set to. It was working fine though, only the shown value was wrong. https://social.sitedethib.com/@Claire/112769984398891581
This commit is contained in:
parent
235b55d8d6
commit
a8202d8a41
|
@ -185,6 +185,7 @@ class AccountPreferencesFragment : PreferenceFragmentCompat() {
|
||||||
val visibility = accountManager.activeAccount?.defaultPostPrivacy ?: Status.Visibility.PUBLIC
|
val visibility = accountManager.activeAccount?.defaultPostPrivacy ?: Status.Visibility.PUBLIC
|
||||||
value = visibility.serverString
|
value = visibility.serverString
|
||||||
setIcon(getIconForVisibility(visibility))
|
setIcon(getIconForVisibility(visibility))
|
||||||
|
isPersistent = false // its saved to the account and shouldn't be in shared preferences
|
||||||
setOnPreferenceChangeListener { _, newValue ->
|
setOnPreferenceChangeListener { _, newValue ->
|
||||||
setIcon(
|
setIcon(
|
||||||
getIconForVisibility(Status.Visibility.byString(newValue as String))
|
getIconForVisibility(Status.Visibility.byString(newValue as String))
|
||||||
|
@ -206,6 +207,7 @@ class AccountPreferencesFragment : PreferenceFragmentCompat() {
|
||||||
val visibility = activeAccount.defaultReplyPrivacy
|
val visibility = activeAccount.defaultReplyPrivacy
|
||||||
value = visibility.serverString
|
value = visibility.serverString
|
||||||
setIcon(getIconForVisibility(visibility))
|
setIcon(getIconForVisibility(visibility))
|
||||||
|
isPersistent = false // its saved to the account and shouldn't be in shared preferences
|
||||||
setOnPreferenceChangeListener { _, newValue ->
|
setOnPreferenceChangeListener { _, newValue ->
|
||||||
val newVisibility = Status.Visibility.byString(newValue as String)
|
val newVisibility = Status.Visibility.byString(newValue as String)
|
||||||
setIcon(getIconForVisibility(newVisibility))
|
setIcon(getIconForVisibility(newVisibility))
|
||||||
|
|
Loading…
Reference in New Issue