mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 20:00:05 +00:00
URL query parameters should be pretty decoded, not fully decoded
This commit is contained in:
parent
339674919d
commit
d78e650368
1 changed files with 1 additions and 1 deletions
|
|
@ -585,7 +585,7 @@ void PlacefileManager::Impl::PlacefileRecord::Update()
|
|||
// Iterate through each query parameter in the URL
|
||||
if (url.hasQuery())
|
||||
{
|
||||
auto query = url.query(QUrl::ComponentFormattingOption::FullyEncoded)
|
||||
auto query = url.query(QUrl::ComponentFormattingOption::PrettyDecoded)
|
||||
.toStdString();
|
||||
|
||||
boost::char_separator<char> delimiter("&");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue