mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 06:26:02 -07:00
Fix #820
This commit is contained in:
parent
a9f5f8683f
commit
242706ea34
1 changed files with 4 additions and 1 deletions
|
@ -4235,7 +4235,10 @@ inline bool Server::write_response_core(Stream &strm, bool close_connection,
|
|||
bool need_apply_ranges) {
|
||||
assert(res.status != -1);
|
||||
|
||||
if (400 <= res.status && error_handler_) { error_handler_(req, res); }
|
||||
if (400 <= res.status && error_handler_) {
|
||||
error_handler_(req, res);
|
||||
need_apply_ranges = true;
|
||||
}
|
||||
|
||||
std::string content_type;
|
||||
std::string boundary;
|
||||
|
|
Loading…
Reference in a new issue