summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mir_core/src/http.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mir_core/src/http.cpp b/src/mir_core/src/http.cpp
index 879df3b038..5722313625 100644
--- a/src/mir_core/src/http.cpp
+++ b/src/mir_core/src/http.cpp
@@ -75,9 +75,6 @@ MIR_CORE_DLL(CMStringA) mir_urlEncode(const char *szUrl)
{
ret.AppendChar(*s);
}
- else if (*s == ' ') {
- ret.AppendChar('+');
- }
else {
ret.AppendChar('%');
ret.AppendChar(szHexDigits[*s >> 4]);