From 16e560c3815b52609de103b45c1d5d2cbf155b97 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 2 Jul 2021 23:37:00 +0200 Subject: [PATCH] Don't abort the update checker thread when one curl_easy_perform fails. --- src/lib/update_checker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.30.2