Skip to content

Commit

Permalink
fix(calendar): Increase timeout to 60 seconds for large ics calendar.…
Browse files Browse the repository at this point in the history
… Closes #5781.
  • Loading branch information
WoodySlum committed Jun 6, 2023
1 parent b68a215 commit fa5264e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SoObjects/Appointments/SOGoWebAppointmentFolder.m
Expand Up @@ -131,7 +131,7 @@ - (NSDictionary *) loadWebCalendar
curl_easy_setopt(curl, CURLOPT_URL, [location UTF8String]);
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 20L);
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 60L);
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);

authInfos = [self _loadAuthData];
Expand Down

0 comments on commit fa5264e

Please sign in to comment.