mirror of
https://github.com/element-hq/element-android
synced 2024-11-28 05:31:21 +03:00
Refresh push pref after diagnostic
This commit is contained in:
parent
2ed7be243b
commit
b26d379d20
1 changed files with 12 additions and 2 deletions
|
@ -244,6 +244,16 @@ class VectorSettingsNotificationPreferenceFragment @Inject constructor(
|
|||
val preference = findPreference<VectorSwitchPreference>(key)
|
||||
preference?.isHighlighted = true
|
||||
}
|
||||
|
||||
refreshPref()
|
||||
}
|
||||
|
||||
private fun refreshPref() {
|
||||
// This pref may have change from troubleshoot pref fragment
|
||||
if (!FcmHelper.isPushSupported()) {
|
||||
findPreference<VectorSwitchPreference>(VectorPreferences.SETTINGS_START_ON_BOOT_PREFERENCE_KEY)
|
||||
?.isChecked = vectorPreferences.autoStartOnBoot()
|
||||
}
|
||||
}
|
||||
|
||||
override fun onAttach(context: Context) {
|
||||
|
|
Loading…
Reference in a new issue