kemal/src/kemal/ext/response.cr

14 lines
254 B
Crystal
Raw Normal View History

class HTTP::Server::Response
class Output
def close
2019-06-13 11:31:45 +00:00
if !response.wrote_headers? && response.headers.has_key?("Content-Range")
response.content_length = @out_count
end
ensure_headers_written
super
end
end
end