fix utils::unescape

This commit is contained in:
gfgtdf 2024-12-10 17:47:16 +01:00
parent e549b03412
commit 1bd64bd8aa

View file

@ -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)