[WebIO]: Fix Crash (#580)

This commit is contained in:
Edo 2022-11-22 21:02:10 +00:00 committed by GitHub
parent f7b27205b8
commit c38a258102
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -279,9 +279,9 @@ namespace Utils
return {};
}
if (const auto itr = headers.find("Content-Type"); itr == headers.end())
if (!headers.contains("Content-Type"))
{
itr->second = "application/x-www-form-urlencoded";
headers["Content-Type"] = "application/x-www-form-urlencoded";
}
std::string finalHeaders;