We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b14335 commit 0d37d76Copy full SHA for 0d37d76
ext/hyper_ruby/src/response.rs
@@ -61,10 +61,14 @@ impl Response {
61
let body = self.response.body();
62
match body.clone().frame().now_or_never() {
63
Some(frame) => {
64
- let frame = frame.unwrap();
65
66
- let data_chunk = frame.into_data().unwrap();
67
- RString::from_slice(data_chunk.iter().as_slice())
+ match frame {
+ Some(frame) => {
+ let frame = frame.unwrap();
+ let data_chunk = frame.into_data().unwrap();
68
+ RString::from_slice(data_chunk.iter().as_slice())
69
+ },
70
+ None => RString::buf_new(0),
71
+ }
72
}
73
None => RString::buf_new(0),
74
0 commit comments