From 10ecd32e4b4715537c63a9e06a11b1fb5ee8fb48 Mon Sep 17 00:00:00 2001 From: Ryan Zhao Date: Thu, 15 Sep 2022 17:04:36 +1000 Subject: [PATCH] increase call connecting time from 30s to 60s --- Session/Calls/Call Management/SessionCall.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Session/Calls/Call Management/SessionCall.swift b/Session/Calls/Call Management/SessionCall.swift index 87a3aed2a..1fc8620a5 100644 --- a/Session/Calls/Call Management/SessionCall.swift +++ b/Session/Calls/Call Management/SessionCall.swift @@ -416,7 +416,7 @@ public final class SessionCall: CurrentCallProtocol, WebRTCSessionDelegate { public func setupTimeoutTimer() { invalidateTimeoutTimer() - let timeInterval: TimeInterval = (hasConnected ? 60 : 30) + let timeInterval: TimeInterval = 60 timeOutTimer = Timer.scheduledTimerOnMainThread(withTimeInterval: timeInterval, repeats: false) { _ in self.didTimeout = true