don't overwrite content-length if its already there
we shouldn't overwrite something that the client likely did it willlingly
This commit is contained in:
parent
61af3854cb
commit
845ccb10ab
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ class HTTP::Server::Response
|
||||||
class Output
|
class Output
|
||||||
def close
|
def close
|
||||||
# ameba:disable Style/NegatedConditionsInUnless
|
# ameba:disable Style/NegatedConditionsInUnless
|
||||||
unless response.wrote_headers? && !response.headers.has_key?("Content-Range")
|
if !response.wrote_headers? && !response.headers.has_key?("Content-Range") && !response.headers.has_key?("Content-Length")
|
||||||
response.content_length = @out_count
|
response.content_length = @out_count
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue