diff --git a/CHANGELOG.md b/CHANGELOG.md index 854f8e6a..7c7a0c77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +Version 144: + +* Fix websocket permessage-deflate negotiation + +-------------------------------------------------------------------------------- + Version 143: * Fix autobahn report link diff --git a/include/boost/beast/websocket/impl/accept.ipp b/include/boost/beast/websocket/impl/accept.ipp index 29adfb00..e52a74ef 100644 --- a/include/boost/beast/websocket/impl/accept.ipp +++ b/include/boost/beast/websocket/impl/accept.ipp @@ -746,7 +746,7 @@ do_accept( // teardown if Connection: close. return; } - pmd_read(pmd_config_, req); + pmd_read(pmd_config_, res); open(role_type::server); }