mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
someone made an oopsie in SentAsyncWebRequest::Impl's constructor
This commit is contained in:
parent
b17ca9ae4b
commit
23bfc22d11
1 changed files with 2 additions and 1 deletions
|
@ -187,7 +187,7 @@ static std::unordered_map<std::string, SentAsyncWebRequestHandle> RUNNING_REQUES
|
||||||
static std::mutex RUNNING_REQUESTS_MUTEX;
|
static std::mutex RUNNING_REQUESTS_MUTEX;
|
||||||
|
|
||||||
SentAsyncWebRequest::Impl::Impl(SentAsyncWebRequest* self, AsyncWebRequest const& req, std::string const& id) :
|
SentAsyncWebRequest::Impl::Impl(SentAsyncWebRequest* self, AsyncWebRequest const& req, std::string const& id) :
|
||||||
m_id(id), m_url(req.m_url), m_target(req.m_target), m_extra(req.extra()), m_httpHeaders(req.m_httpHeaders) {
|
m_self(self), m_id(id), m_url(req.m_url), m_target(req.m_target), m_extra(req.extra()), m_httpHeaders(req.m_httpHeaders) {
|
||||||
|
|
||||||
#define AWAIT_RESUME() \
|
#define AWAIT_RESUME() \
|
||||||
{\
|
{\
|
||||||
|
@ -296,6 +296,7 @@ SentAsyncWebRequest::Impl::Impl(SentAsyncWebRequest* self, AsyncWebRequest const
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
Loader::get()->queueInMainThread([self = data->self, now, total]() {
|
Loader::get()->queueInMainThread([self = data->self, now, total]() {
|
||||||
std::lock_guard _(self->m_mutex);
|
std::lock_guard _(self->m_mutex);
|
||||||
for (auto& prog : self->m_progresses) {
|
for (auto& prog : self->m_progresses) {
|
||||||
|
|
Loading…
Reference in a new issue