summaryrefslogtreecommitdiff
path: root/src/mir_core
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2023-09-04 19:40:46 +0300
committerGeorge Hazan <george.hazan@gmail.com>2023-09-04 19:40:46 +0300
commit27ec5fe7a4be3b1b6e5f99a705ebe2694ffb8ad1 (patch)
treee0fc872852f85aaec2b7013e196d668b24424204 /src/mir_core
parentac719164dbdbc142e15bebc0813d781d0e61b44c (diff)
Twitter: API 2.0 auth (beginning)
Diffstat (limited to 'src/mir_core')
-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]);