1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-15 10:48:33 +01:00

Correct another QStringBuilder/QString conversion

This commit is contained in:
Arnaud Bienner 2012-02-20 20:38:50 +01:00
parent 7b0adc449f
commit 1f93c26d97

View File

@ -111,7 +111,7 @@ void JamendoDynamicPlaylist::Fetch() {
// We have to use QHttp here because there's no way to disable Keep-Alive
// with QNetworkManager.
QHttpRequestHeader header("GET", url.encodedPath() + "?" + url.encodedQuery());
QHttpRequestHeader header("GET", QString(url.encodedPath() + "?" + url.encodedQuery()));
header.setValue("Host", url.encodedHost());
QHttp http(url.host());