mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 16:23:39 +02:00
Disable pipelining in HTTPResourceRequest
This commit is contained in:
parent
d5f1e6fb37
commit
18fb695614
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ void HTTPResourceRequest::doSend() {
|
|||
qDebug() << "Setting http range to " << byteRange;
|
||||
networkRequest.setRawHeader("Range", byteRange.toLatin1());
|
||||
}
|
||||
networkRequest.setAttribute(QNetworkRequest::HttpPipeliningAllowedAttribute, true);
|
||||
networkRequest.setAttribute(QNetworkRequest::HttpPipeliningAllowedAttribute, false);
|
||||
|
||||
_reply = NetworkAccessManager::getInstance().get(networkRequest);
|
||||
|
||||
|
|
Loading…
Reference in a new issue