mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-23 08:48:07 -06:00
Small optimization of WebUI responses when there isn't a data payload.
This commit is contained in:
@@ -119,7 +119,7 @@ bool HttpResponseGenerator::gCompress(QByteArray &dest_buffer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
QByteArray HttpResponseGenerator::toByteArray() {
|
QByteArray HttpResponseGenerator::toByteArray() {
|
||||||
if (m_gzip) {
|
if (m_gzip && m_message.size() > 0) {// prevents writing a useless and wasteful header
|
||||||
QByteArray dest_buf;
|
QByteArray dest_buf;
|
||||||
if (gCompress(dest_buf)) {
|
if (gCompress(dest_buf)) {
|
||||||
setValue("content-encoding", "gzip");
|
setValue("content-encoding", "gzip");
|
||||||
|
|||||||
Reference in New Issue
Block a user