mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
Merge pull request #659 from patriciomacadden/header-headers
Use `headers` method instead of `header` method in `Sinatra::Response`
This commit is contained in:
commit
08effab5d2
1 changed files with 2 additions and 2 deletions
|
@ -125,7 +125,7 @@ module Sinatra
|
|||
headers["Content-Length"] = body.inject(0) { |l, p| l + Rack::Utils.bytesize(p) }.to_s
|
||||
end
|
||||
|
||||
[status.to_i, header, result]
|
||||
[status.to_i, headers, result]
|
||||
end
|
||||
|
||||
private
|
||||
|
@ -159,7 +159,7 @@ module Sinatra
|
|||
|
||||
private
|
||||
|
||||
def setup_close(env, status, header, body)
|
||||
def setup_close(env, status, headers, body)
|
||||
return unless body.respond_to? :close and env.include? 'async.close'
|
||||
env['async.close'].callback { body.close }
|
||||
env['async.close'].errback { body.close }
|
||||
|
|
Loading…
Add table
Reference in a new issue