fix utils::unescape
This commit is contained in:
parent
e549b03412
commit
1bd64bd8aa
1 changed files with 1 additions and 1 deletions
|
@ -439,7 +439,7 @@ std::string unescape(const std::string &str)
|
|||
res.erase(pos, 1);
|
||||
pos = res.find('\\', pos + 1);
|
||||
} while (pos != std::string::npos);
|
||||
return str;
|
||||
return res;
|
||||
}
|
||||
|
||||
std::string urlencode(const std::string &str)
|
||||
|
|
Loading…
Add table
Reference in a new issue