From: Carl Hetherington Date: Fri, 2 Jul 2021 21:37:00 +0000 (+0200) Subject: Don't abort the update checker thread when one curl_easy_perform fails. X-Git-Tag: v2.15.156~18 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=16e560c3815b52609de103b45c1d5d2cbf155b97 Don't abort the update checker thread when one curl_easy_perform fails. --- diff --git a/src/lib/update_checker.cc b/src/lib/update_checker.cc index 704b7b497..3bc02b50a 100644 --- a/src/lib/update_checker.cc +++ b/src/lib/update_checker.cc @@ -136,7 +136,7 @@ UpdateChecker::thread () int r = curl_easy_perform (_curl); if (r != CURLE_OK) { set_state (State::FAILED); - return; + continue; } /* Parse the reply */