From ada355061aa42ef2b731cbf180806f0f173de177 Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Fri, 1 Jul 2022 14:44:46 +0200 Subject: [PATCH] Increase the call state checking interval to not overload the server Signed-off-by: Claudio Cambra --- src/gui/callstatechecker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/callstatechecker.cpp b/src/gui/callstatechecker.cpp index 83795251f2725..242c5b0aba15b 100644 --- a/src/gui/callstatechecker.cpp +++ b/src/gui/callstatechecker.cpp @@ -37,7 +37,7 @@ void CallStateChecker::setup() _notificationTimer.setInterval(60 * 1000); connect(&_notificationTimer, &QTimer::timeout, this, &CallStateChecker::slotNotificationTimerElapsed); - _statusCheckTimer.setInterval(2 * 1000); + _statusCheckTimer.setInterval(5 * 1000); connect(&_statusCheckTimer, &QTimer::timeout, this, &CallStateChecker::slotStatusCheckTimerElapsed); }