1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-03 16:51:58 +00:00

fix h2 compatibility

This commit is contained in:
Nikolay Kim 2018-07-11 13:25:07 +06:00
parent 19ae5e9489
commit 28b36c650a

View file

@ -62,7 +62,7 @@ where
flags: Flags::empty(),
tasks: VecDeque::new(),
state: State::Handshake(server::handshake(IoWrapper {
unread: Some(buf),
unread: if buf.is_empty() { None } else { Some(buf) },
inner: io,
})),
keepalive_timer: None,