Added special characters for encoding.
This commit is contained in:
parent
3b1fcbe825
commit
c2a41984af
@ -35,7 +35,8 @@ const string urlUtils::encode(const string& s)
|
||||
const char_t c = *it;
|
||||
|
||||
if (parserHelpers::isPrint(c) && !parserHelpers::isSpace(c) &&
|
||||
c != '%' && c != '=' && c != '?' && c != '&')
|
||||
c != '%' && c != '=' && c != '?' && c != '&' &&
|
||||
c != '@' && c != '/' && c != ':')
|
||||
{
|
||||
result += c;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user