From 90d55d05268d396c4de7fc0047cdd5457e241501 Mon Sep 17 00:00:00 2001 From: altalk23 <45172705+altalk23@users.noreply.github.com> Date: Sun, 1 Oct 2023 17:37:26 +0300 Subject: [PATCH] revert web --- loader/src/utils/web.cpp | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/loader/src/utils/web.cpp b/loader/src/utils/web.cpp index 88569b3eb..7675f46cf 100644 --- a/loader/src/utils/web.cpp +++ b/loader/src/utils/web.cpp @@ -214,8 +214,6 @@ SentAsyncWebRequest::Impl::Impl(SentAsyncWebRequest* self, AsyncWebRequest const return this->error("Curl not initialized", -1); } - log::debug("curl init {}", curl); - // resulting byte array ByteVector ret; // output file if downloading to file. unique_ptr because not always @@ -308,28 +306,17 @@ SentAsyncWebRequest::Impl::Impl(SentAsyncWebRequest* self, AsyncWebRequest const } ); curl_easy_setopt(curl, CURLOPT_PROGRESSDATA, &data); - log::debug("curl opts"); auto res = curl_easy_perform(curl); - log::debug("curl perform"); - if (res != CURLE_OK) { long code = 0; - log::debug("curl fail"); curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); - log::debug("curl cleanup"); curl_easy_cleanup(curl); - log::debug("end"); return this->error("Fetch failed: " + std::string(curl_easy_strerror(res)), code); } - log::debug("curl cleanup 2"); curl_easy_cleanup(curl); - log::debug("end 2"); - AWAIT_RESUME(); - log::debug("end 3"); - // if something is still holding a handle to this // request, then they may still cancel it m_finished = true; @@ -595,4 +582,4 @@ AsyncWebResult AsyncWebResponse::json() { return Err(std::string(e.what())); } }); -} +} \ No newline at end of file