Fix incorrect content_encoding for Brotli (#763)

This commit is contained in:
Unkorunk 2020-11-20 03:39:20 +10:00 committed by GitHub
parent e1133a2dcb
commit b21dc8cbe0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4581,7 +4581,7 @@ inline void Server::apply_ranges(const Request &req, Response &res,
} else if (type == detail::EncodingType::Brotli) {
#ifdef CPPHTTPLIB_BROTLI_SUPPORT
compressor = detail::make_unique<detail::brotli_compressor>();
content_encoding = "brotli";
content_encoding = "br";
#endif
}