mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 08:22:59 +01:00
fix compression
This commit is contained in:
parent
18f3841783
commit
c35d294611
@ -394,7 +394,8 @@ impl PayloadEncoder {
|
|||||||
},
|
},
|
||||||
Body::Binary(ref mut bytes) => {
|
Body::Binary(ref mut bytes) => {
|
||||||
if compression {
|
if compression {
|
||||||
let transfer = TransferEncoding::eof(SharedBytes::default());
|
let mut buf = SharedBytes::default();
|
||||||
|
let transfer = TransferEncoding::eof(buf.clone());
|
||||||
let mut enc = match encoding {
|
let mut enc = match encoding {
|
||||||
ContentEncoding::Deflate => ContentEncoder::Deflate(
|
ContentEncoding::Deflate => ContentEncoder::Deflate(
|
||||||
DeflateEncoder::new(transfer, Compression::Default)),
|
DeflateEncoder::new(transfer, Compression::Default)),
|
||||||
|
Loading…
Reference in New Issue
Block a user