From: Claudio Cambra Date: Fri, 1 Jul 2022 12:44:46 +0000 (+0200) Subject: Increase the call state checking interval to not overload the server X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~15^2~124^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ada355061aa42ef2b731cbf180806f0f173de177;p=nextcloud-desktop.git Increase the call state checking interval to not overload the server Signed-off-by: Claudio Cambra --- diff --git a/src/gui/callstatechecker.cpp b/src/gui/callstatechecker.cpp index 83795251f..242c5b0ab 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); }