diff options
Diffstat (limited to 'wx+')
-rwxr-xr-x | wx+/http.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wx+/http.cpp b/wx+/http.cpp index 15e8427f..a826d751 100755 --- a/wx+/http.cpp +++ b/wx+/http.cpp @@ -226,8 +226,8 @@ std::vector<std::pair<std::string, std::string>> zen::xWwwFormUrlDecode(const st std::vector<std::pair<std::string, std::string>> output; for (const std::string& nvPair : split(str, '&', SplitType::SKIP_EMPTY)) - output.emplace_back(urldecode(beforeFirst(nvPair, '=', IF_MISSING_RETURN_ALL)), - urldecode(afterFirst (nvPair, '=', IF_MISSING_RETURN_NONE))); + output.emplace_back(urldecode(beforeFirst(nvPair, '=', IF_MISSING_RETURN_ALL)), + urldecode(afterFirst (nvPair, '=', IF_MISSING_RETURN_NONE))); return output; } |