diff --git a/src/Utils/WebIO.cpp b/src/Utils/WebIO.cpp index b449226c..645b77c9 100644 --- a/src/Utils/WebIO.cpp +++ b/src/Utils/WebIO.cpp @@ -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;