aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2020-04-06 21:20:32 +0200
committerKitsune Ral <Kitsune-Ral@users.sf.net>2020-04-06 21:41:23 +0200
commita8572345e7a30c96b8ede47e95af65ff2cdef86c (patch)
tree9267051877c61d2b321345b6738a0b0eabe6e391 /lib
parentab9996fc62767d61da779d869e68bfc966ffce8f (diff)
downloadlibquotient-a8572345e7a30c96b8ede47e95af65ff2cdef86c.tar.gz
libquotient-a8572345e7a30c96b8ede47e95af65ff2cdef86c.zip
Revert changes accidentally sneaked in with the previous commit
Diffstat (limited to 'lib')
-rw-r--r--lib/jobs/basejob.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/jobs/basejob.cpp b/lib/jobs/basejob.cpp
index 4ede073f..65668521 100644
--- a/lib/jobs/basejob.cpp
+++ b/lib/jobs/basejob.cpp
@@ -232,7 +232,7 @@ void BaseJob::Private::sendRequest()
req.setAttribute(QNetworkRequest::BackgroundRequestAttribute, inBackground);
req.setAttribute(QNetworkRequest::FollowRedirectsAttribute, true);
req.setMaximumRedirectsAllowed(10);
-// req.setAttribute(QNetworkRequest::HttpPipeliningAllowedAttribute, true);
+ req.setAttribute(QNetworkRequest::HttpPipeliningAllowedAttribute, true);
req.setAttribute(QNetworkRequest::HTTP2AllowedAttribute, true);
Q_ASSERT(req.url().isValid());
for (auto it = requestHeaders.cbegin(); it != requestHeaders.cend(); ++it)