Skip to content

Commit

Permalink
revert web
Browse files Browse the repository at this point in the history
  • Loading branch information
altalk23 committed Oct 1, 2023
1 parent fc58ab7 commit 90d55d0
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions loader/src/utils/web.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -595,4 +582,4 @@ AsyncWebResult<json::Value> AsyncWebResponse::json() {
return Err(std::string(e.what()));
}
});
}
}

0 comments on commit 90d55d0

Please sign in to comment.