summaryrefslogtreecommitdiff
path: root/wx+/http.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2018-05-08 23:55:27 +0200
committerDaniel Wilhelm <shieldwed@outlook.com>2018-05-08 23:55:27 +0200
commit592d003fb937ed206c35082a412490400e489b12 (patch)
tree77187fb74a900258c9e00e695f2c7d2843e94165 /wx+/http.cpp
parent9.0 (diff)
downloadFreeFileSync-592d003fb937ed206c35082a412490400e489b12.tar.gz
FreeFileSync-592d003fb937ed206c35082a412490400e489b12.tar.bz2
FreeFileSync-592d003fb937ed206c35082a412490400e489b12.zip
9.1
Diffstat (limited to 'wx+/http.cpp')
-rwxr-xr-xwx+/http.cpp4
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;
}
bgstack15