Closes #2168 Closes #2170 - Catch ClassCastException for non bool prefs

nightly-build-test
Emily Kager 5 years ago committed by Emily Kager
parent 1cb8f42403
commit a3cd92092a

@ -71,6 +71,8 @@ class SettingsFragment : PreferenceFragmentCompat(), CoroutineScope, AccountObse
}
} catch (e: IllegalArgumentException) {
// The event is not tracked
} catch (e: ClassCastException) {
// The setting is not a boolean, not tracked
}
}
}

Loading…
Cancel
Save