Skip to content

Commit

Permalink
DEBUG: increase cancelConnectingTimeout to 60
Browse files Browse the repository at this point in the history
  • Loading branch information
FriedrichAltheide committed Jan 13, 2024
1 parent 29a21b3 commit b3e1bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Monal/Classes/MLCall.m
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ -(void) createConnectingTimeoutTimer
if(self.cancelConnectingTimeout != nil)
self.cancelConnectingTimeout();
self.cancelConnectingTimeout = nil;
self.cancelConnectingTimeout = createTimer(15.0, (^{
self.cancelConnectingTimeout = createTimer(60.0, (^{
DDLogError(@"Failed to connect call, aborting!");
[self end];
}));
Expand Down

0 comments on commit b3e1bd3

Please sign in to comment.