Remove debugging code.

This commit is contained in:
David Langley
2023-10-24 16:34:47 +01:00
parent 767a0904ef
commit 7bad558f16

View File

@@ -135,13 +135,7 @@ class EditDefaultNotificationSettingPresenter @AssistedInject constructor(
suspend {
// On modern clients, we don't have different settings for encrypted and non-encrypted rooms (Legacy clients did).
notificationSettingsService.setDefaultRoomNotificationMode(isEncrypted = true, mode = mode, isOneToOne = isOneToOne).getOrThrow()
val result = notificationSettingsService.setDefaultRoomNotificationMode(isEncrypted = false, mode = mode, isOneToOne = isOneToOne)
if (result.isFailure) {
result.exceptionOrNull()?.printStackTrace()
}
result.getOrThrow()
notificationSettingsService.setDefaultRoomNotificationMode(isEncrypted = false, mode = mode, isOneToOne = isOneToOne).getOrThrow()
}.runCatchingUpdatingState(action)
}