Skip to content

Commit

Permalink
Increase the call state checking interval to not overload the server
Browse files Browse the repository at this point in the history
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
  • Loading branch information
claucambra committed Jul 1, 2022
1 parent 60960e7 commit ada3550
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/callstatechecker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit ada3550

Please sign in to comment.