Disable crash report dialog

Change-Id: I27bdfa463292b7b013f6c81c82472c1926d799a1
This commit is contained in:
SpiritCroc 2025-10-26 15:41:19 +01:00
parent 06a09dd941
commit 56ed0142e4
2 changed files with 1 additions and 2 deletions

View File

@ -600,7 +600,7 @@ class HomeActivity :
override fun onResume() {
super.onResume()
if (vectorUncaughtExceptionHandler.didAppCrash()) {
if (vectorUncaughtExceptionHandler.didAppCrash() && false) {
vectorUncaughtExceptionHandler.clearAppCrashStatus()
MaterialAlertDialogBuilder(this)

View File

@ -1280,7 +1280,6 @@ class VectorPreferences @Inject constructor(
.putBoolean(SETTINGS_LABS_ALLOW_MARK_UNREAD, true)
//.putBoolean(SETTINGS_LABS_ENABLE_SWIPE_TO_REPLY, false)
.putBoolean(SETTINGS_VOICE_MESSAGE, false)
.putBoolean(SETTINGS_USE_RAGE_SHAKE_KEY, true)
.putBoolean(SETTINGS_AGGREGATE_UNREAD_COUNTS, false)
.putBoolean(SETTINGS_ENABLE_SPACE_PAGER, true)
.putBoolean(SETTINGS_READ_RECEIPT_FOLLOWS_READ_MARKER, true)