Merge pull request #3785 from wiktor-k/fix-notifications
Fix NPE when accessing settings screens
This commit is contained in:
commit
1552c151a5
1 changed files with 6 additions and 4 deletions
|
@ -165,10 +165,12 @@ class AccountSettingsFragment : PreferenceFragmentCompat() {
|
|||
}
|
||||
|
||||
private fun initializeNotifications() {
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||
PRE_SDK26_NOTIFICATION_PREFERENCES.forEach { findPreference(it).remove() }
|
||||
} else {
|
||||
findPreference(PREFERENCE_OPEN_NOTIFICATION_SETTINGS).remove()
|
||||
findPreference(PREFERENCE_OPEN_NOTIFICATION_SETTINGS)?.let {
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||
PRE_SDK26_NOTIFICATION_PREFERENCES.forEach { findPreference(it).remove() }
|
||||
} else {
|
||||
it.remove()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue