From 62bb5a8e3fb52f5a417ba6f4fb5b45d278e1ebe9 Mon Sep 17 00:00:00 2001 From: fkwp Date: Wed, 4 Dec 2024 10:04:38 +0100 Subject: [PATCH] increase ringing timeout from 15 seconds to 90 seconds --- .../kotlin/io/element/android/appconfig/ElementCallConfig.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appconfig/src/main/kotlin/io/element/android/appconfig/ElementCallConfig.kt b/appconfig/src/main/kotlin/io/element/android/appconfig/ElementCallConfig.kt index d7cad2f9e1..390ba5a532 100644 --- a/appconfig/src/main/kotlin/io/element/android/appconfig/ElementCallConfig.kt +++ b/appconfig/src/main/kotlin/io/element/android/appconfig/ElementCallConfig.kt @@ -16,5 +16,5 @@ object ElementCallConfig { /** * The default duration of a ringing call in seconds before it's automatically dismissed. */ - const val RINGING_CALL_DURATION_SECONDS = 15 + const val RINGING_CALL_DURATION_SECONDS = 90 }