REVIEW:130040
Otherwise some '%XX' parts of url query might be converted back to ASCII and this cause problems while passing info_hash to torrent trackers. Detailed description is in review.
Gbp-Pq: Name keep-query-encoding-when-HTTP-Proxy-is-used.patch
u.setPort(m_request.url.port());
u.setPath(m_request.url.path(QUrl::FullyEncoded));
u.setQuery(m_request.url.query(QUrl::FullyEncoded));
- return u.toString();
+ return u.toString(QUrl::FullyEncoded);
} else {
QString result = m_request.url.path(QUrl::FullyEncoded);
if (m_request.url.hasQuery()) {