URL query parameters should be pretty decoded, not fully decoded

This commit is contained in:
Dan Paulat 2023-09-10 21:26:09 -05:00
parent 339674919d
commit d78e650368

View file

@ -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("&");