mirror of https://github.com/fafhrd91/actix-web
properly handle upgrade header if content-length header is set
This commit is contained in:
parent
6a1d560f22
commit
dea39030bc
|
@ -141,6 +141,13 @@ impl Decoder for RequestDecoder {
|
|||
}
|
||||
header::UPGRADE => {
|
||||
has_upgrade = true;
|
||||
// check content-length, some clients (dart)
|
||||
// sends "content-length: 0" with websocket upgrade
|
||||
if let Ok(val) = value.to_str() {
|
||||
if val == "websocket" {
|
||||
content_length = None;
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => (),
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue