1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 00:21:08 +01:00

do not set content encoding header for upgraded connection

This commit is contained in:
Nikolay Kim 2017-11-29 19:40:27 -08:00
parent e4f8551cba
commit 6c4fdf604b

View File

@ -459,7 +459,10 @@ impl PayloadEncoder {
} else {
resp.headers.insert(CONNECTION, HeaderValue::from_static("upgrade"));
}
if encoding != ContentEncoding::Identity {
encoding = ContentEncoding::Identity;
resp.headers.remove(CONTENT_ENCODING);
}
TransferEncoding::eof()
}
};