Skip to content

Commit

Permalink
Merge branch 'master' into manual-range-support
Browse files Browse the repository at this point in the history
  • Loading branch information
rawler committed Aug 31, 2020
2 parents 02008d3 + f4da4cd commit 848f8b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/response.rs
Expand Up @@ -291,7 +291,7 @@ where
headers: self.headers,
status_code: self.status_code,
data_length,
chunked_threshold: None,
chunked_threshold: self.chunked_threshold,
}
}

Expand Down Expand Up @@ -449,7 +449,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 848f8b5

Please sign in to comment.