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:
parent
7b0adc449f
commit
1f93c26d97
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user