Skip to content

Commit

Permalink
Merge pull request #177 from rawler/remember-chunked-threshold
Browse files Browse the repository at this point in the history
Response: Don't forget `chunked_threshold`
  • Loading branch information
rawler committed Aug 31, 2020
2 parents fa5b19b + 6a10b10 commit f4da4cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/response.rs
Expand Up @@ -295,7 +295,7 @@ where
headers: self.headers,
status_code: self.status_code,
data_length,
chunked_threshold: None,
chunked_threshold: self.chunked_threshold,
}
}

Expand Down Expand Up @@ -453,7 +453,7 @@ where
status_code: self.status_code,
headers: self.headers,
data_length: self.data_length,
chunked_threshold: None,
chunked_threshold: self.chunked_threshold,
}
}
}
Expand Down

0 comments on commit f4da4cd

Please sign in to comment.