mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-26 17:36:05 -05:00
fix postFields not setting isPostRequest to true
This commit is contained in:
parent
2540790ccb
commit
91703e4192
1 changed files with 1 additions and 0 deletions
|
@ -522,6 +522,7 @@ AsyncWebRequest& AsyncWebRequest::customRequest(std::string const& request) {
|
|||
}
|
||||
|
||||
AsyncWebRequest& AsyncWebRequest::postFields(std::string const& fields) {
|
||||
m_impl->m_isPostRequest = true;
|
||||
m_impl->m_postFields = fields;
|
||||
return *this;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue