From 91703e4192a79ea7dac3c5b5b49052b107f2b787 Mon Sep 17 00:00:00 2001 From: matcool <26722564+matcool@users.noreply.github.com> Date: Tue, 9 Jan 2024 18:31:55 -0300 Subject: [PATCH] fix postFields not setting isPostRequest to true --- loader/src/utils/web.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/loader/src/utils/web.cpp b/loader/src/utils/web.cpp index c03bead2..27a54690 100644 --- a/loader/src/utils/web.cpp +++ b/loader/src/utils/web.cpp @@ -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; }